【使用FileSystemObject判定路徑下檔案是否存在】
Dim fs as ObjectSet fs = CreateObject("Scripting.FileSystemObject")
If fs.fileexists( 完整檔案路徑含副檔名 ) = True Then
'檔案存在
Else
'檔案不存在
End If
Set fs = Nothing
相同功能:
〔VBA〕Dir-檢查檔案是否存在 --v001
〔VBA〕FileSystemObject-檢查檔案是否存在 --v026