刪除目錄以及目錄下的所有檔案(六
) 本文講述如何刪除目錄以及其下的所有檔案。 1.
建立乙個對話方塊工程:
deletefolder。
2. 新增乙個文字框控制項來顯示選擇的資料夾
:m_path。
3. 新增乙個「瀏覽按鈕」,**如下:
cstring
returnpath;
tchar
szpath
[_max_path];
browseinfobi;
bi.hwndowner
= null;
bi.pidlroot
= null;
bi.lpsztitle
= _t("
請選擇乙個資料夾");
bi.pszdisplayname
= szpath;
bi.ulflags
= bif_returnonlyfsdirs;
bi.lpfn
= null;
bi.lparam
= null;
lpitemidlist
pitemidlist
= shbrowseforfolder
(&bi);
if(pitemidlist)
else
returnpath
= "";
m_path
.setwindowtext
(returnpath);
4. 新增乙個函式,用來遞迴刪除目錄下的檔案,如下:
void
cdeletefolderdlg
::delfolder
(cstring
path)
} }5.
新增乙個按鈕「刪除」,**如下:
cstring
str;
m_path
.getwindowtext
(str);
delfolder
(str);
if(removedirectory
(str))
完成,可以刪除選定的目錄及下的所有檔案。
PHP刪除目錄及目錄下所有檔案
函式 php刪除目錄及目錄下所有檔案 功能 php操作檔案。刪除指定目錄及 或 該目錄下的所有檔案。語言 php 函式 一 刪除目錄及目錄下的所有檔案?12 3 4 56 7 8 910 11 12 13 14 15 16 17 18 19 20 21 22 23 24 functiondelfil...
C 刪除乙個檔案目錄下的所有檔案以及目錄
bool doremovedirectory cstring chrdirname bool releasedirectory cstring chrdirname end of civmsvrinfo releasedirectory bool doremovedirectory cstring ...
VC 刪除乙個檔案目錄下的所有檔案以及目錄
1 bool doremovedirectory cstring chrdirname 23 bool releasedirectory cstring chrdirname 4 end of civmsvrinfo releasedirectory 1415 bool doremovedirect...