1. ホーム
  2. スクリプト・コラム
  3. 腹筋

VBS再帰的手法による多階層ディレクトリフォルダ作成方法

2022-01-01 05:46:15

コアコード

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(fso,path)
	If fso.FolderExists(path) Then 
		Exit Function
	End If
	If Not fso.FolderExists(fso.GetParentFolderName(path)) Then
		CreateFolderEx fso,fso.GetParentFolderName(path)
	End If
	CreateFolder(path)
End Function

テストして問題なく動作しています

本文中の2つの機能へのリンク CreateFolderメソッド と共に GetParentFolderNameメソッド .