我正在尝试基本上查看文件是否存在其文件名中包含当前日期。在T-SQL中,当我想在字符串中搜索某些内容时,我只是用“%”字符将其括起来:%June 14 2012%
如何在VBScript中执行类似的操作?
答案 0 :(得分:3)
使用“*”,因为您正在寻找文件。
答案 1 :(得分:1)
尝试类似:
Folder = "C:\"
Set fso = CreateObject("Scripting.FileSystemObject")
Set fold = fso.GetFolder(folder)
For Each file in fold.Files
If Instr(file, "June") >0 Then
Response.Write file.name & " got it in filename!"
End if
Next
Set fold = Nothing
Set fso = Nothing