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