這一次來介紹如何用 My 查詢 資料夾 與 檔案 是否存在
程式碼非常的簡單,相信初心者可以很簡單的來應用!
If My.Computer.FileSystem.FileExists( "C:\test.txt") Then MsgBox( "檔案存在" ) Else MsgBox( "檔案不存在" ) End If
If My.Computer.FileSystem.DirectoryExists( "C:\test" ) Then MsgBox( "資料夾存在" ) Else MsgBox( "資料夾不存在" ) End If
沒有留言:
張貼留言