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

VBSがファイルやフォルダのパス入力ファイルの絶対パスをすべて走査する(ソースコード付き)

2022-01-07 09:38:47

ソースコードは以下の通りです。

Function listFilesPath(filepath)
  t1=Timer()
  Debug.WriteLine "**** is now executing the count, in time:"+CStr(t1)
  Set fso=CreateObject("scripting.filesystemobject")
  Set myfolder=fso.GetFolder(filepath)
  If fso.FolderExists(filepath) then
    Set subcol=myfolder.SubFolders
    Set filescol=myfolder.
    For Each file In filescol
      Debug.WriteLine filepath+"\"+file.name
    Next
    If subcol.count>0 Then
      For Each folder In subcol
        'Debug.WriteLine filepath+"\"+folder.Name
        listFilesPath(filepath+"\"+folder.Name)
      next
      
    End if
  Else
    Debug.WriteLine "No such file system"
  End if
  
  Set filescol=Nothing
  Set subcol=nothing
  Set fso=Nothing
  t2=Timer()
Debug.WriteLine "**** is now done counting, time: "+CStr(t2)
Debug.WriteLine "The whole operation took:"&CStr(t2-t1)&" seconds"
End function

以前、BinaryDevelopの編集者が同様の記事を更新しましたので、そちらを参照してください。