0
當前目錄下的文件,什麼是錯的語法如下 我想驗證是否file.vb下currDir存在(currDir = C:\ DIR1 \ DIR2)VB +找到fso.FileExists
如果(FSO。 FILEEXISTS(currDir \ file.vb))然後
Wscript.Echo OK
結束如果
當前目錄下的文件,什麼是錯的語法如下 我想驗證是否file.vb下currDir存在(currDir = C:\ DIR1 \ DIR2)VB +找到fso.FileExists
如果(FSO。 FILEEXISTS(currDir \ file.vb))然後
Wscript.Echo OK
結束如果
缺少雙引號和連接符&
:
Set fso = CreateObject("Scripting.FileSystemObject")
currDir="C:\dir1\dir2"
If (fso.FileExists(currDir & "\file.vb")) Then
Wscript.Echo OK
End If