FileSystem.MoveFile Method (String, String, UIOption, UICancelOption)
Moves a file to a new location.
Namespace: Microsoft.VisualBasic.FileIO
Assembly: Microsoft.VisualBasic (in Microsoft.VisualBasic.dll)
public static void MoveFile( string sourceFileName, string destinationFileName, UIOption showUI, UICancelOption onUserCancel )
Parameters
- sourceFileName
- Type: System.String
Path of the file to be moved.
- destinationFileName
- Type: System.String
Path of the directory into which the file should be moved.
- showUI
- Type: Microsoft.VisualBasic.FileIO.UIOption
Specifies whether to visually track the operation's progress. Default is UIOption.OnlyErrorDialogs.
- onUserCancel
- Type: Microsoft.VisualBasic.FileIO.UICancelOption
Specifies whether or not an exception is thrown when the user cancels the operation. Default is UICancelOption.ThrowException.
| Exception | Condition |
|---|---|
| ArgumentException | The path is not valid for one of the following reasons: it is a zero-length string; it contains only white space; it contains invalid characters; or it is a device path (starts with \\.\); it ends with a trailing slash. |
| ArgumentNullException | destinationFileName is Nothing or an empty string. |
| FileNotFoundException | The source file is not valid or does not exist. |
| IOException | The destination file exists and overwrite is set to False. |
| IOException | The file is in use by another process, or an I/O error occurs. |
| OperationCanceledException | onUserCancel is set to ThrowException, and either the user has cancelled the operation or an unspecified I/O error occurs. |
| PathTooLongException | The path exceeds the system-defined maximum length. |
| NotSupportedException | A file or directory name in the path contains a colon (:) or is in an invalid format. |
| SecurityException | The user lacks necessary permissions to view the path. |
If the target structure does not exist, it is created.
The MoveFile method preserves ACEs (Access Control Entries) only when moving the file within the same volume. This includes inherited ACEs, which become direct ACEs when moved (direct ACEs take precedence over inherited ACEs). If a file is moved between volumes, ACEs will not be copied.
The following table lists an example of a task involving the My.Computer.FileSystem.MoveFile method.
To | See |
Move a file |
This example moves the file Test.txt from TestDir1 to TestDir2.
My.Computer.FileSystem.MoveFile("C:\TestDir1\test.txt", "C:\TestDir2\test.txt")
This example moves the file Test.txt from TestDir1 to TestDir2 and renames it Test2.txt.
My.Computer.FileSystem.MoveFile("C:\TestDir1\test.txt", "C:\TestDir2\test2.txt")
- EnvironmentPermission
Controls the ability to access all environment variables. Associated enumeration: Unrestricted.
- FileIOPermission
Controls the ability to access files and folders. Associated enumeration: Unrestricted.
- RegistryPermission
Controls the ability to access registry variables. Associated enumeration: Unrestricted.
- UIPermission
Controls the permissions related to user interfaces and the clipboard. Associated enumeration: SafeSubWindows.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.