Check if a directory Exists in C#

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;

Check if a directory Exists 

The Directory.Exists method checks if the specified directory exists. The following code snippet checks if a directory exists or not and deletes only if the directory exists. 

string root = @"C:\Temp";      
// If directory does not exist, don't even try 
if (Directory.Exists(root))
{
    Directory.Delete(root);
}



Download free book: Working with Directories in C#

Up Next
    Ebook Download
    View all
    Learn
    View all