IsolatedStorageFile.FileExists(String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
确定指定的路径是否指的是独立存储区中的现有文件。
public:
bool FileExists(System::String ^ path);
public bool FileExists (string path);
[System.Runtime.InteropServices.ComVisible(false)]
public bool FileExists (string path);
member this.FileExists : string -> bool
[<System.Runtime.InteropServices.ComVisible(false)>]
member this.FileExists : string -> bool
Public Function FileExists (path As String) As Boolean
参数
- path
- String
要测试的路径和文件名。
返回
如果 path
指的是独立存储区中的现有文件而不是 null
,则为 true
;否则为 false
。
- 属性
例外
path
为 null
。
独立存储关闭。
已释放独立存储区。
已移除独立存储区。