Pages

2019-08-02

〔VBA〕FileSystemObject-檢查檔案是否存在 --v026

【使用FileSystemObject判定路徑下檔案是否存在】

Dim fs as Object
Set fs = CreateObject("Scripting.FileSystemObject")
If fs.fileexists( 完整檔案路徑含副檔名 ) = True Then
    '檔案存在
Else
    '檔案不存在
End If
Set fs = Nothing

相同功能:
〔VBA〕Dir-檢查檔案是否存在 --v001
〔VBA〕FileSystemObject-檢查檔案是否存在 --v026


章老師的電腦小講堂 https://www.facebook.com/ScenicSchool/
※※ 本區做為經常使用之程式碼複製區,提問請至小講堂唷 ※※