This Code will be used to create a new directory and to delete existing directory.
suppose we want to create a new directory name TestDirectory on c:/drive.
First we will check if the directory with this name already exists then there is no need to create.
namespace that need to be used for this is: using System.IO;
Code To Create Directory:
string FilePath=@"C:\TestDirectory";
if (!System.IO.Directory.Exists(FilePath))
Directory.CreateDirectory(FilePath);
To Delete Directory first we will check if the directory exists then delete.
Code To Delete Directory:
string FilePath=@"C:\TestDirectory";
if (System.IO.Directory.Exists(FilePath))
Directory.Delete(FilePath,true);
Thanks & Regards
Lakhan Pal Garg