Del命令引數 vb呼叫shell

2021-05-23 12:40:17 字數 798 閱讀 3687

dos下的del命令是用來刪除檔案的,而dos下的rd命令才是用來刪除資料夾的,命令的具體使用方法請看下面的文字:

del 命令:

刪除乙個或數個檔案。

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

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

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

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

有檔案都會被刪除。

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

/f 強制刪除唯讀檔案。

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

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

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

attributes r 唯讀檔案 s 系統檔案

h 隱藏檔案 a 存檔檔案

- 表示「否」的字首

如果命令副檔名被啟用,del 和 erase 會如下改變:

/s 開關的顯示句法會顛倒,即只顯示已經

刪除的檔案,而不顯示找不到的檔案。

rd命令:

刪除乙個目錄。

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

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

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

檔案。用於刪除目錄樹。

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

Del命令引數 vb呼叫shell

dos下的del命令是用來刪除檔案的,而dos下的rd命令才是用來刪除資料夾的,命令的具體使用方法請看下面的文字 del 命令 刪除乙個或數個檔案。del p f s q a attributes names erase p f s q a attributes names names 指定乙個或數...

VB呼叫VC DLL的引數問題

問題示例如下,假設vb中申明乙個dll中的匯出函式為 public declare function somefunc lib test.dll alias somefunc byval name as string as long 那麼vc做的dll中的匯出函式原型是什麼?因為vb中的string...

vb中呼叫帶引數的儲存過程

dim data connection as new adodb.connection ado連線物件 dim data recordset as new adodb.recordset ado的記錄集 dim sqlcmdcheckelement as new adodb.command dim ...