嗨,我一直在寻找能够在目录中查找某些文件的解决方案。 让我们说我的目录是:“C:\ temp \ Result \”。在结果文件夹中有6个或更多文件:
File 1: "aaa.eee.txt"
File 2: "aaa.bbb.txt"
File 3: "aaa.ccc.txt"
File 4: "kkk.text"
File 5: "hhhh.xml"
File 6: "jjj.dll"
现在我需要那些名称以“aaa。”开头的文件。请帮帮我。
非常感谢任何帮助。提前谢谢。
答案 0 :(得分:0)
With CreateObject("Scripting.FileSystemObject")
For Each File In .GetFolder("c:\temp\result").Files
If StrComp(Left(File.Name, 3), "aaa", vbTextCompare) = 0 Then
' Do what you want with this file
End If
Next
End With