My.Computer.FileSystem.FileExists 方法
更新:2007 年 11 月
傳回 Boolean,指出指定的檔案是否存在。
' Usage Dim value As Boolean = My.Computer.FileSystem.FileExists(file) ' Declaration Public Function FileExists( _ ByVal file As String _ ) As Boolean
參數
- file
String。檔案的名稱和路徑。必要項。
傳回值
如果檔案存在則傳回 True,否則這個方法會傳回 False。
例外狀況
下列情形可能會造成例外狀況:
- 檔案名稱以斜線 (\) 結束 (ArgumentException)。
備註
如果應用程式沒有足夠的權限可以讀取指定的檔案,則無論路徑是否存在,FileExists 方法都會傳回 False。這個方法並不會擲回例外狀況。
工作
下表列出包含 My.Computer.FileSystem.FileExists 方法的工作範例。
若要 |
請參閱 |
---|---|
判斷檔案是否存在 |
範例
這個範例會檢查檔案 Check.txt 是否存在,並在訊息方塊中提供資訊。
If My.Computer.FileSystem.FileExists("c://Check.txt") Then
MsgBox("File found.")
Else
MsgBox("File not found.")
End If
需求
命名空間:Microsoft.VisualBasic.MyServices
類別:FileSystemProxy (提供對 FileSystem 的存取)
組件:Visual Basic 執行階段程式庫 (在 Microsoft.VisualBasic.dll 中)
依專案類型的可用性
專案類型 |
是否可用 |
---|---|
Windows 應用程式 |
是 |
類別庫 |
是 |
主控台應用程式 |
是 |
Windows 控制項程式庫 |
是 |
Web 控制項程式庫 |
是 |
Windows 服務 |
是 |
網站 |
是 |
使用權限
下列使用權限可能為必要:
使用權限 |
描述 |
---|---|
控制存取檔案和資料夾的功能。關聯的列舉型別:Unrestricted。 |
請參閱
工作
HOW TO:在 Visual Basic 中判斷目錄是否存在