首页 > 其他分享 >vba校验文件是否存在

vba校验文件是否存在

时间:2023-03-23 10:23:33浏览次数:28  
标签:vba sPath End 是否 校验文件 fso sFile Else

Dim fso As FileSystemObject
Set fso = New FileSystemObject

  If Not fso.FileExists(sPath & sFile) Then
  If bRetry Then
  Beep
  If MsgBox("File, " + sPath + sFile + " , not found!", vbCritical + vbRetryCancel, "File Access Error") = vbCancel Then
    Exit Function
  Else
    GoTo Research
    End If
  End If
Else
  FileExist = True
End If

 

标签:vba,sPath,End,是否,校验文件,fso,sFile,Else
From: https://www.cnblogs.com/Insist-Y/p/17246492.html

相关文章