Linux C语言删除文件

转自:http://blog.csdn.net/blaider/article/details/41080581

使用“remove”函数。   

头文件

#include <sys/stat.h>


有时候需要先清空某个目录里的所有文件,然后再放置新下载文件。需要打开目录,并遍历此目录下的所有文件,然后调用remove函数删除文件

[cpp]  view plain  copy
 
  1. int EmptyDir(char *destDir)  
  2. {  
  3.   
  4.     DIR *dp;  
  5.     struct dirent *entry;  
  6.     struct stat statbuf;  
  7.     if ((dp = opendir(destDir)) == NULL)  
  8.     {  
  9.         fprintf(stderr, "cannot open directory: %s\n", destDir);  
  10.         return -1;  
  11.     }  
  12.     chdir (destDir);  
  13.     while ((entry = readdir(dp)) != NULL)  
  14.     {  
  15.         lstat(entry->d_name, &statbuf);  
  16.         if (S_ISREG(statbuf.st_mode))  
  17.         {  
  18.             remove(entry->d_name);  
  19.         }  
  20.     }  
  21.   
  22.     return 0;  
  23. }  


使用到的头文件

#include <sys/stat.h>


你可能感兴趣的:(Linux C语言删除文件)