作者在 2014-01-28 23:47:49 发布以下内容
使用remove(filename)
#include <stdio.h>
#include <stdlib.h>#include <ctype.h>
int main(int argc, char *argv[])
{
char str[80];
if(argc != 2)
{
printf("usage: xerase <filename>\n");
exit(1);
}
printf("Erase %s? (Y/N):", argv[1]);
gets(str);
if(toupper(*str) == 'Y')
{
if(remove(argv[1]))
{
printf("Cannot erase file.\n");
exit(1);
}
}
return 0;
}