ARTICLE

Check if a directory Exists in C#

Posted by Mahesh Chand Articles | Files, Directory, IO July 17, 2012
How to Check if a directory Exists using C# and .NET.
Reader Level:

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#

Login to add your contents and source code to this article
post comment
     
COMMENT USING
PREMIUM SPONSORS
DynamicPDF™ product line allows you to dynamically generate PDF documents, merge PDF documents and add new content to existing PDF documents from within your applications.
Join a Chapter
SPONSORED BY
  • PDF reports have never been easier to create. With our included WYSIWYG Designer, you can layout your reports, set up your data source and let DynamicPDF ReportWriter do the rest.
Get Career Advice from Experts