中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Linux中怎么用c語言刪除某個目錄下的文件

發布時間:2022-03-23 17:39:38 來源:億速云 閱讀:672 作者:iii 欄目:web開發

這篇文章主要介紹了Linux中怎么用c語言刪除某個目錄下的文件的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇Linux中怎么用c語言刪除某個目錄下的文件文章都會有所收獲,下面我們一起來看看吧。

利用c語言刪除目錄下文件

最近這段時間工作內容是關于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刪除指定目錄下的文件命令

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循環語句刪除指定目錄下的所有類型的文件

關于“Linux中怎么用c語言刪除某個目錄下的文件”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“Linux中怎么用c語言刪除某個目錄下的文件”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

霍邱县| 普兰县| 怀集县| 阿鲁科尔沁旗| 新竹县| 保康县| 同心县| 金沙县| 府谷县| 舞钢市| 深泽县| 剑阁县| 胶州市| 涟水县| 重庆市| 桑植县| 和龙市| 开江县| 扎兰屯市| 华蓥市| 鹿泉市| 龙口市| 神木县| 怀仁县| 洛宁县| 蒲江县| 比如县| 积石山| 新巴尔虎左旗| 阿克苏市| 乌兰浩特市| 武夷山市| 上思县| 九江市| 长丰县| 金门县| 抚州市| 中卫市| 习水县| 上犹县| 昌黎县|