linux删除一個文件怎麼操作?最近這段時間工作内容是關于Linux下的簡單文件操作,以前對于Linux系統下的文件操作函數都不是太熟悉,經過這次實踐,對這些函數使用有了一定的了解,我來為大家科普一下關于linux删除一個文件怎麼操作?以下内容希望對你有幫助!
最近這段時間工作内容是關于Linux下的簡單文件操作,以前對于Linux系統下的文件操作函數都不是太熟悉,經過這次實踐,對這些函數使用有了一定的了解。
如何創建文件,讀寫文件,這些簡單的我想大家應該是比較熟悉的,我所介紹的是如何遍曆某個目錄,并且删除該目錄下的文件(可以指定後綴名),并且也可以指定文件的修改時間範圍(多少小時以前的舊文件可以删除),下面就是簡單的函數實現,僅供初學者參考(畢竟我也是初學者\(^o^)/~)
#include <stdio.h>
#include <fcntl.h>
#include <time.h>
#include <string.h>
#include <dirent.h>
#include <sys/stat.h>
#include <unistd.h>
#define FILE_MAX_LEN 256
void rmv_old_files(const char *path, const char *suf, int hours)
{
char filename[FILE_MAX_LEN] = {0};
struct tm *TM;
struct dirent *dirp;
struct stat statbuf;
DIR *dp = NULL;
time_t curr_time;
int nameLen, offset;
char *chTemp = NULL;
curr_time = time((time_t*)NULL);
dp = opendir(path);
if (NULL == dp)
{
return;
}
while((dirp=readdir(dp)) != NULL)
{
if (strcmp(dirp->d_name, ".")==0 || strcmp(dirp->d_name, "..")==0)
{
continue;
}
nameLen = strlen(dirp->d_name);
chTemp = dirp->d_name;
if (*suf != '\0')
{
offset = nameLen-strlen(suf);
if (offset<0 || strncmp(suf, chTemp offset, strlen(suf))!=0)
{
continue;
}
}
sprintf(filename, "%s%s", path, dirp->d_name);
if (!stat(filename, &statbuf))
{
/*check the st_mtime of the file, if more than retention_hours ago then delete it*/
if (curr_time-statbuf.st_mtime >= hours*3600 && S_ISREG(statbuf.st_mode))
{
unlink(filename);
}
}
}
closedir(dp);
}
附:linux删除指定目錄下的文件命令1.rm -f 指定目錄*
#最經典的方法,删除指定目錄下的所有類型的文件
2.find 指定目錄 -type f -delete或find 指定目錄 -type f -exec rm -f {} \;
#用find命令查找指定目錄下的所有普通文件并删除or用find命令的處理動作将其删除
3.find 指定目錄 -type f | xargs rm -f
#用于參數列表過長;要删除的文件太多
4.rm-f `find 指定目錄 -type f`
#删除指定目錄下的全部普通文件
5.for delete in `ls –l 指定目錄路徑`;do rm -f * ;done
#用for循環語句删除指定目錄下的所有類型的文件
總結到此利用c語言删除某個目錄下文件的文章就介紹到這了。最後,學習從來不是一個人的事情,要有個相互監督的夥伴,對于C/C 感興趣可以關注小編在後台私信我,學習交流,技術探讨,面試指導,簡曆修改...還有超多源碼素材等學習資料,零基礎的視頻等着你!
,更多精彩资讯请关注tft每日頭條,我们将持续为您更新最新资讯!