2010-10-17 21:50:55 +02:00
|
|
|
|
|
|
|
int cmd_touch(char file[])
|
|
|
|
{
|
2021-06-12 23:34:41 +02:00
|
|
|
kol_struct70 k70;
|
|
|
|
char temp[FILENAME_MAX];
|
|
|
|
unsigned result;
|
2010-10-17 21:50:55 +02:00
|
|
|
|
2021-06-12 23:34:41 +02:00
|
|
|
if (NULL == file || strlen(file) == 0) {
|
|
|
|
printf(CMD_TOUCH_USAGE);
|
|
|
|
return TRUE;
|
2010-10-17 21:50:55 +02:00
|
|
|
}
|
|
|
|
|
2021-06-12 23:34:41 +02:00
|
|
|
if ( ( 0 == strcmp(file, ".") ) || ( 0 == strcmp(file, "..") ) || ( 0 == strcmp(cur_dir, "/")) ) {
|
|
|
|
return FALSE;
|
2010-10-17 21:50:55 +02:00
|
|
|
}
|
|
|
|
|
2021-06-12 23:34:41 +02:00
|
|
|
if ( '/' == file[0]) {
|
|
|
|
strcpy(temp, file);
|
|
|
|
|
|
|
|
if ( !file_check(temp) )
|
|
|
|
k70.p00 = 2;
|
|
|
|
else
|
|
|
|
k70.p00 = 3;
|
|
|
|
} else {
|
|
|
|
strcpy(temp, cur_dir);
|
|
|
|
if (temp[strlen(temp)-1] != '/')
|
|
|
|
strcat(temp, "/"); // add slash
|
|
|
|
strcat(temp, file);
|
|
|
|
if ( !file_check(temp) )
|
|
|
|
k70.p00 = 2;
|
|
|
|
else
|
|
|
|
k70.p00 = 3;
|
2010-10-17 21:50:55 +02:00
|
|
|
}
|
|
|
|
|
2021-06-12 23:34:41 +02:00
|
|
|
k70.p04 = 0;
|
|
|
|
//k70.p08 = 0;
|
|
|
|
k70.p12 = 0;
|
|
|
|
k70.p16 = 0;
|
|
|
|
k70.p20 = 0;
|
|
|
|
k70.p21 = temp;
|
2010-10-17 21:50:55 +02:00
|
|
|
|
2021-06-12 23:34:41 +02:00
|
|
|
//printf("try to touch [%s], fn70(%d)\n\r", temp, k70.p00);
|
2017-01-06 22:23:13 +01:00
|
|
|
|
2021-06-12 23:34:41 +02:00
|
|
|
result = kol_file_70(&k70);
|
2010-10-17 21:50:55 +02:00
|
|
|
|
2021-06-12 23:34:41 +02:00
|
|
|
if (0 == result)
|
|
|
|
return TRUE;
|
|
|
|
else
|
|
|
|
return FALSE;
|
2010-10-17 21:50:55 +02:00
|
|
|
|
|
|
|
}
|