IsolatedStorageFile.MoveFile Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Moves a specified file to a new location, and optionally lets you specify a new file name.
Assembly: mscorlib (in mscorlib.dll)
'Declaration Public Sub MoveFile ( _ sourceFileName As String, _ destinationFileName As String _ )
Parameters
- sourceFileName
- Type: System.String
The name of the file to move.
- destinationFileName
- Type: System.String
The path to the new location for the file. If a file name is included, the moved file will have that name.
| Exception | Condition |
|---|---|
| ArgumentException | sourceFileName or destinationFileName is a zero-length string, contains only white space, or contains one or more invalid characters defined by the Path.GetInvalidPathChars method. |
| ArgumentNullException | sourceFileName or destinationFileName is Nothing. |
| InvalidOperationException | The isolated store has been closed. |
| ObjectDisposedException | The isolated store has been disposed. |
| FileNotFoundException | sourceFileName was not found. |
| IsolatedStorageException | The isolated store has been removed. -or- Isolated storage is disabled. |