c++語言本身是不能刪除檔案或資料夾的,他們是windows作業系統裡的東西,所以得借助其api函式。
其一:使用shell 介面:
void filedelete(cstring directory)
使用該函式你得 #include#pragma comment(lib,"shlwapi.lib") 使用他可以將directory和其下的所有檔案靜默刪除,聽說在刪除共享資料夾的時候會出錯或提示,沒試過。不過我使用system()做刪除的時候共享資料夾下的刪除是會出錯的。
其二: 使用mfc的cfilefind遞迴遍歷檔案並刪除檔案和資料夾
bool deletedirectory(char* strdirname)
else}}
tempfind.close();
if(!removedirectory(strdirname))
return true;
}
c 刪除資料夾
c 語言本身是不能刪除檔案或資料夾的,他們是windows作業系統裡的東西,所以得借助其api函式。其一 使用shell 介面 void filedelete cstring directory 使用該函式你得 include pragma comment lib,shlwapi.lib 使用他可以...
C 刪除資料夾
這裡說三種 1這是最簡單的方法 directoryinfo di new directoryinfo string path di.delete true 注 path是你要刪除的非空目錄 true 你要刪除裡面所有的檔案,包括資料夾和子資料夾 2 刪除非空資料夾 要刪除的資料夾目錄 void de...
c 刪除資料夾
c 語言本身是不能刪除檔案或資料夾的,他們是windows作業系統裡的東西,所以得借助其api函式。其一 使用shell 介面 void filedelete cstring directory 使用該函式你得 include pragma comment lib,shlwapi.lib 使用他可以...