/// /// 刪除資料夾及其子資料夾內過期檔案///
///
public void delfile(string strfolderpath)
//判斷檔案日期是否小於今天,是則刪除
if (feinfo.creationtime < datetime.now.adddays(-30))}}
}}
//獲取資料夾下所有的檔案logs\\error\\";
directoryinfo dyinfo = new
directoryinfo(strfolderpath);
//獲取資料夾下所有的檔案
foreach (fileinfo feinfo in
dyinfo.getfiles())}}
C 刪除指定資料夾下N天及之前日誌檔案的方法
功能 刪除ndays天及之前的日誌檔案 ndays 0 不刪除日誌,3 刪除3天及之前的日誌 保留今天 昨天 前天的日誌 void crecordlog clearlog uint ndays 刪除n天前的日誌 else 遇到檔案 if findnextfile hfind,findfiledata...
刪除資料夾和資料夾下的檔案
c 沒有刪除檔案的功能,可借助windows api實現該功能,還可以依據呼叫c執行庫函式實現刪除功能。mfc程式中 刪除檔案的函式為deletefile 刪除資料夾的函式為removedirectory 參考自 刪除資料夾和資料夾下的子檔案函式實現如下 bool deletedirectory c...
iOS 刪除資料夾下所有檔案
源 有時候需要在ios系統裡面,刪除指定資料夾的內容,資料夾裡面可能是檔案,也可能包含有資料夾。刪除指定型別的檔案。方法如下 nsstring extension m4r nsfilemanager filemanager nsfilemanagerdefaultmanager nsarray pa...