IsolatedStorageFile.FileExists Method
May 02, 2013
Determines whether the specified path refers to an existing file in the isolated store.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- path
- Type: System.String
The path and file name to test.
Return Value
Type: System.Booleantrue if path refers to an existing file in the isolated store and is not Nothing; otherwise, false.
| Exception | Condition |
|---|---|
| IsolatedStorageException | The isolated store has been removed. -or- Isolated storage is disabled. |
| ObjectDisposedException | The isolated store has been disposed. |
The following example determines whether a file exists before writing to it. This example is part of a larger example provided for IsolatedStorageFile class.
' Write to an existing file: MyApp1\SubDir1\MyApp1A.txt ' Determine if the file exists before writing to it. Dim filePath As String = Path.Combine(subdirectory1, "MyApp1A.txt") If store.FileExists(filePath) Then Try Using sw As StreamWriter = _ New StreamWriter(store.OpenFile(filePath, FileMode.Open, FileAccess.Write)) sw.WriteLine("To do list:") sw.WriteLine("1. Buy supplies.") End Using Catch ex As IsolatedStorageException sb.AppendLine(ex.Message) End Try Else sb.AppendLine((filePath + "does not exist")) End If