「VBScript」フォルダの名前を取得するサンプル

2020年11月15日

サンプルコード
Dim fso
Dim fdr

Set fso = WScript.CreateObject(“Scripting.FileSystemObject")
Set fdr = fso.GetFolder(“c:\test007")

WScript.Echo “フォルダの名前:" & fdr.Name

VBScript

Posted by arkgame