FileSystemProxy.FileExists(String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
如果指定的檔案存在,則傳回 True
。
public:
bool FileExists(System::String ^ file);
public bool FileExists (string file);
member this.FileExists : string -> bool
Public Function FileExists (file As String) As Boolean
參數
- file
- String
檔案的名稱和路徑。
傳回
如果檔案存在,則傳回 True
,否則這個方法會傳回 False
。
例外狀況
檔名結尾為反斜杠 (\) 。
範例
此範例會檢查檔案 Check.txt
是否存在,並在消息框中提供資訊。
If My.Computer.FileSystem.FileExists("c:\Check.txt") Then
MsgBox("File found.")
Else
MsgBox("File not found.")
End If
備註
如果應用程式沒有足夠的許可權可讀取指定的檔案, FileExists
則不論路徑是否存在,方法都會傳回 False
;此方法不會擲回例外狀況。