MoveDirectory Method

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.

Namespace:  System.IO.IsolatedStorage
Assembly:  mscorlib (in mscorlib.dll)

public void MoveDirectory(
	string sourceDirectoryName,
	string destinationDirectoryName
)

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.

ExceptionCondition
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.

sourceFileName and destinationFileName must specify different directory names.

Windows Phone OS

Supported in: 8.1, 8.0, 7.1

Windows Phone

Show:
© 2017 Microsoft