檢查檔案或資料夾是否存在(Dir 函式)

2021-10-06 21:41:42 字數 642 閱讀 4749

dir函式,返回檔案或者資料夾名稱,語法如下:

dir[(pathname[, attributes])]
dir函式的兩個引數都是可選的,pathname是檔案或資料夾名稱,對於引數attributes,你可以下列常量或者數值之一:

dir函式常用來檢查某個檔案或資料夾是否存在,如果不存在,那麼就返回空字串(」」)。我們到立即視窗:

?dir("c:\", vbnormal)

函式dir允許你在檔案路徑名中使用萬用字元——星號(*)代表多個字元,問號(?)代表單個字元:

例如,要在windows資料夾中查詢所有配置設定的檔案,你可以查詢所有的ini檔案,如下:

?dir("c:\winnt\*.ini", vbnormal)

system.ini

?dir win.ini

?dir

winfile.ini

?dir control.ini

?dir equip32.ini

?dir

sxpwin32.ini

C 檢查資料夾和檔案是否存在

01 判斷資料夾的存在 建立 刪除資料夾 02stringaaaa f notebook haha 路徑的正確寫法 03if directory.exists aaaa 如果不存在就建立file資料夾 04 09else 10 14 15 判斷檔案的存在 建立 刪除檔案 16stringdddd a...

c 判斷檔案或資料夾是否存在

判斷檔案是否存在 bool isfileexist const cstring csfile 判斷資料夾是否存在 bool isdirexist const cstring csdir 判斷檔案或資料夾是否存在 bool ispathexist const cstring cspath 變變變變變種...

shell 判斷資料夾或檔案是否存在

資料夾不存在則建立 1 2 3 4 5 if d data then mkdir data else echo 資料夾已經存在 fi 檔案存在則刪除 1 2 3 4 5 if f data filename then echo 檔案不存在 else rm rf data filename fi 判斷...