Name
Directory.Move Method
Class
System.IO.Directory
Syntax
Directory.Move(sourcedirname,destdirname)
-
sourcedirname(required; String) The name of the directory to be moved
-
destdirname(required; String) The location to which the source drive and its contents are to be moved
Return Value
None
Description
Moves a directory and all its contents, including nested subdirectories and their files, to a new location
Rules at a Glance
sourcedirnamecan be either an absolute path (a fully qualified path from the root directory to the directory to be moved) or a relative path (starting from the current directory to the directory to be moved).sourcedirnameanddestdirnamecan be either a path on the local system, the path of a mapped network drive, or a UNC path.Neither
sourcedirnamenordestdirnamecan contain wildcard characters.destdirnamemust be either a fully qualified path or a relative path.destdirnamecan also be an absolute path or a relative path, except that it must include the name to be assigned to the moved directory. This allows you to rename the directory at the same time as you move it.If the directory indicated by
destdirnamealready exists, an error occurs.
Example
Suppose that the C drive contains the following folders:
c:\docs\letters c:\Documents and Settings
Moving the letters folder to make it a subdirectory of c:\Documents and Settings is done by the following code:
Directory.Move("c:\docs\letters", _
"c:\Documents and Settings\letters")Thus, the first argument is ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access