Move a Folder in C#

How to move a folder using C# and .NET.
  • 4492
The System.IO.Directory class in the .NET Framework class library provides static methods for creating, copying, moving, and deleting directories and subdirectories. Before you can use the Directory class, you must import the System.IO namespace. 
using System.IO;
 
Move a directory in C#
 
The Directory.Move method moves an existing directory to a new specified directory with full path.  The Move method takes two parameters. The Move method deletes the original directory. 
 
The following code snippet moves the source directory to the destination directory.  
 

 string sourceDirName = @"C:\Temp";

 string destDirName = @"C:\NewTemp";

 try

 {

     Directory.Move(sourceDirName, destDirName);

 }

 catch (IOException exp)

 {

     Console.WriteLine(exp.Message);

 }

 
Download free book: Working with Directories in C#
© 2020 DotNetHeaven. All rights reserved.