remove 再度出错
#include <stdio.h>
int main ()
{
if( remove( "sqwesaq.txt" ) != 0 )
perror( "Error deleting file" );
else
puts( "File successfully deleted" );
return 0;
}
上面这个,我每次运行的时候总是显示 Error deleting file:no such file or directory.
怎么回事呢?而且sqwesaq.txt这个文件是存在的 而且也是txt格式。
int main ()
{
if( remove( "sqwesaq.txt" ) != 0 )
perror( "Error deleting file" );
else
puts( "File successfully deleted" );
return 0;
}
上面这个,我每次运行的时候总是显示 Error deleting file:no such file or directory.
怎么回事呢?而且sqwesaq.txt这个文件是存在的 而且也是txt格式。
作者: Derek_Matthew 发布时间: 2011-06-16
你文件存在哪了,你写个绝对路径试试
作者: bdmh 发布时间: 2011-06-16
你写绝对路径试试看~~
作者: q191201771 发布时间: 2011-06-16
txt必须和工程文件同级目录。
作者: dizuo 发布时间: 2011-06-16
strerror(errno) 打印看说神马
作者: wxflul 发布时间: 2011-06-16
绝对路径可以删除文件,但是如何删除文件夹呢?
作者: Derek_Matthew 发布时间: 2011-06-16