我需要帮助:
检查文件是否存在,在预定义的文件夹中..
我的例子:
DIM fso
Set fso = CreateObject("Scripting.FileSystemObject")
If (fso.FileExists("file1.exe")) Then
If (fso.FileExists("secondfile.exe)) Then
MsgBox "file esxist", 0+16, "---"
WScript.Quit()
Else
Dim objShell
Set objShell = WScript.CreateObject( "WScript.Shell" )
objShell.Run("a file")
WScript.Sleep(1000)
objShell.SendKeys "{ENTER}"
End If
Else
MsgBox "Not founded file1.exe"
WScript.Quit()
End If
如果创建了file1.exe,则搜索第二个文件..如果这也创建了,则发送消息“文件存在”如果未创建,则运行程序并退出wscript。
我需要的?文件夹中的文件,找到我们在启动前提供的脚本!
例如,我将它交给 C:\ trololo 文件夹来定位文件,它会查找和是否必须执行这些操作。
在询问要找到文件的文件夹之前,如何解决该搜索?我无法弄清楚:(
抱歉英语不好:/