刪除檔案 資料夾 del rd

2021-06-20 16:46:29 字數 1188 閱讀 7531

刪除檔案:del (del=delete  命令erase與del一樣的效果.)

d:\>del /?

刪除乙個或數個檔案。

del [/p] [/f] [/s] [/q] [/a[[:]attributes]] names

erase [/p] [/f] [/s] [/q] [/a[[:]attributes]] names

names 指定乙個或數個檔案或目錄列表。萬用字元可被用來

刪除多個檔案。如果指定了乙個目錄,目錄中的所

有檔案都會被刪除。

/p 刪除每乙個檔案之前提示確認。 pause?

/f 強制刪除唯讀檔案。force

/s 從所有子目錄刪除指定檔案。 subdirectories

/q 安靜模式。刪除全域性萬用字元時,不要求確認。quiet

/a 根據屬性選擇要刪除的檔案。attributes

attributes r 唯讀檔案 read s 系統檔案 system

h 隱藏檔案 hidden a 存檔檔案 archive

- 表示「否」的字首

ok,del file1 file2,就可以刪除了。

那麼刪除資料夾呢?我們嘗試一下

del dir,然後發現資料夾還在,但是資料夾裡面的內容被刪除了,相當於del dir\*;

資料夾怎麼辦呢?用rd

rd=rmdir 英文全名removes directory  即移除(刪除)目錄

1 d:\>rd /?

2 刪除乙個目錄。34

rmdir [/s] [/q] [drive:]path

5rd [/s] [/q] [drive:]path

67 /s 除目錄本身外,還將刪除指定目錄下的所有子目錄和

8 檔案。用於刪除目錄樹。

910 /q 安靜模式,帶 /s 刪除目錄樹時不要求確認

1. 不帶引數進行刪除目錄時,只能刪除空目錄

2. /s引數即subderectories 用於刪除子目錄或者非空目錄

3. /q引數即quiet 不要求確認

檔案 資料夾刪除

今天恰好用到檔案刪除,上網看到了乙份整理不錯的,分享下。1,驗證傳入路徑是否為正確的路徑名 windows系統,其他系統未使用 驗證字串是否為正確路徑名的正規表示式 private static string matches a za z 通過 spath.matches matches 方法的返回...

利用遞迴刪除資料夾(資料夾中套資料夾)

刪除目錄 bool deldir const ansistring p if p.isempty p.length 4 return false 引數必須大於3,即不能為磁碟根目錄或空白 int len p.length char path p.c str ansistring dir ansist...

拷貝檔案 資料夾 建立資料夾 刪除資料夾操作

qt拷貝檔案 資料夾 建立資料夾 刪除資料夾操作 cpp view plain copy brief 拷貝檔案到目的資料夾 param srcfilename 原始檔全路徑,比如 f tx wwxx.txt f tx des desd param desfilepathname 要copy到的目的路...