VBS(VBScript)によるフォルダのサイズを取得する方法を紹介
フォルダのサイズを取得する方法
サンプルソース
(入力)
Dim fs
Dim fn
Set fs = WScript.CreateObject("Scripting.FileSystemObject")
Set fn = fs.GetFolder("e:\folder")
WScript.Echo "サイズ:" & FormatNumber(fn.Size, 0)
(出力)
サイズ:10,428