2010-10-17 21:50:55 +02:00
|
|
|
|
|
|
|
|
|
int cmd_rm(char file[])
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
kol_struct70 k70;
|
|
|
|
|
char temp[256];
|
|
|
|
|
unsigned result;
|
|
|
|
|
|
|
|
|
|
if (NULL == file)
|
|
|
|
|
{
|
2010-10-21 01:58:36 +02:00
|
|
|
|
#if LANG_ENG
|
|
|
|
|
printf (" rm <filename>\n\r");
|
|
|
|
|
#elif LANG_RUS
|
|
|
|
|
printf (" rm <<3C><><EFBFBD> 䠩<><E4A0A9>>\n\r");
|
|
|
|
|
#endif
|
2013-02-17 16:22:51 +01:00
|
|
|
|
return TRUE;
|
2010-10-17 21:50:55 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( '/' == file[0])
|
|
|
|
|
{
|
|
|
|
|
strcpy(temp, file);
|
|
|
|
|
|
|
|
|
|
if ( !file_check(temp) )
|
|
|
|
|
{
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
strcpy(temp, cur_dir);
|
|
|
|
|
strcat(temp, file);
|
|
|
|
|
|
|
|
|
|
if ( !file_check(temp) )
|
|
|
|
|
{
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
k70.p00 = 8;
|
|
|
|
|
k70.p04 = 0;
|
|
|
|
|
k70.p08 = 0;
|
|
|
|
|
k70.p12 = 0;
|
|
|
|
|
k70.p16 = 0;
|
|
|
|
|
k70.p20 = 0;
|
|
|
|
|
k70.p21 = temp;
|
|
|
|
|
|
|
|
|
|
result = kol_file_70(&k70);
|
|
|
|
|
|
|
|
|
|
if (0 == result)
|
|
|
|
|
return TRUE;
|
|
|
|
|
else
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
}
|
2013-02-17 16:22:51 +01:00
|
|
|
|
|