VBS遞迴建立多級目錄資料夾的方法

2022-09-20 18:21:07 字數 679 閱讀 2833

核心**

rkdfn

createfolders "d:\jb51test程式設計客棧1\2\3\4\5"

function createfolders(path)

set fso = createobject("scripting.filesystemobject")

createfolderex fso,path

set fso = nothing

end function

function createfolderex(f程式設計客棧so,path)

if fso.folderexists(path) then

exit function

end if

if not fso.folderexists(fso.getparentfoldername(path)) then

createfolrkdfnderex fso,fso.getparentfoldername(path)

end if

fso.createfolder(path)

end function

經過測試執行沒問題

文中的兩個函式鏈結createfolder 方法與getparentfoldrkdfnername 方法。

本文標題: vbs遞迴建立多級目錄資料夾的方法

本文位址:

遍歷資料夾 建立目錄

searchsubdir lpcstr lpszfolderpath else while findnextfilea hfile,wfd createdirectory in lpctstr lpszdirname advance over it.if p skip until we hit th...

Python建立目錄資料夾

python對檔案的操作還算是方便的,只需要包含os模組進來,使用相關函式即可實現目錄的建立。1 os.path.exists path 判斷乙個目錄是否存在 2 os.makedirs path 多層建立目錄 3 os.mkdir path 建立目錄 直接上 def mkdir path 引入模組...

IOS 建立目錄 資料夾

ios 的沙盒機制,應用只能訪問自己應用目錄下的檔案。ios不像 android 沒有sd ios應用產生的內容,如影象 檔案 快取內容等都必須儲存在自己的沙盒內。預設情況下,每個沙盒含有 3個資料夾 documents,library 和 tmp library 包含caches preferen...