IsolatedStorageFile.FileExists(String) Method

Definition

Determines whether the specified path refers to an existing file in the isolated store.

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

Parameters

path
String

The path and file name to test.

Returns

true if path refers to an existing file in the isolated store and is not null; otherwise, false.

Attributes

Exceptions

path is null.

The isolated store is closed.

The isolated store has been disposed.

The isolated store has been removed.

Applies to

See also