当没有符合条件的文件时,可以通过以下方式让VBScript终止:
Set fso = CreateObject("Scripting.FileSystemObject")
If Not fso.FileExists("C:\path\to\file.txt") Then
Exit Sub
End If
On Error Resume Next
Set fso = CreateObject("Scripting.FileSystemObject")
If Not fso.FileExists("C:\path\to\file.txt") Then
Err.Raise vbObjectError + 1, "", "No matching file found."
End If
If Err.Number <> 0 Then
WScript.Echo "Error: " & Err.Description
WScript.Quit
End If
以上是两种常见的方法来让VBScript在没有符合条件的文件时终止执行。根据具体的脚本逻辑和需求,可以选择适合的方式来实现。
领取专属 10元无门槛券
手把手带您无忧上云