IsolatedStorageFile.MoveDirectory Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Moves a specified directory and its contents to a new location.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- sourceDirectoryName
- Type: System.String
The name of the directory to move.
- destinationDirectoryName
- Type: System.String
The path to the new location for sourceDirectoryName. This cannot be the path to an existing directory.
| 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 null. |
| InvalidOperationException | The isolated store has been closed. |
| ObjectDisposedException | The isolated store has been disposed. |
| DirectoryNotFoundException | sourceDirectoryName does not exist. |
| IsolatedStorageException | The isolated store has been removed. -or- Isolated storage is disabled. -or- destinationDirectoryName already exists. -or- sourceDirectoryName and destinationDirectoryName refer to the same directory. |