FileSystem.FileExists(String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
如果指定文件存在,则返回 True
。
public:
static bool FileExists(System::String ^ file);
public static bool FileExists (string file);
static member FileExists : string -> bool
Public Shared Function FileExists (file As String) As Boolean
参数
- file
- String
文件的名称和路径。
返回
如果文件存在,则返回 True
;否则此方法返回 False
。 如果该参数表示目录(而不是文件)的路径,则此方法还会返回 False
。
例外
文件名以反斜杠 (\) 结尾。
示例
此示例检查文件 Check.txt
是否存在,并在消息框中提供信息。
If My.Computer.FileSystem.FileExists("c:\Check.txt") Then
MsgBox("File found.")
Else
MsgBox("File not found.")
End If
注解
如果应用程序没有足够的权限来读取指定文件,则 FileExists
无论路径是否存在,方法都将 False
返回 ;该方法不会引发异常。