0

我试图基本上查看是否存在文件名中包含当前日期的文件。在 T-SQL 中,当我想在字符串中搜索某些内容时,我只需将其括在“%”字符中,如下所示:%June 14 2012%

我如何在 VBScript 中做类似的事情?

4

2 回答 2

3

使用“*”,因为您正在查找文件。

于 2012-06-14T16:50:30.967 回答
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 
于 2012-06-14T17:27:15.900 回答