In C#, how can one determine if a subdirectory exists?

Is this neccesary when calling CreateSubDirectory?

link|improve this question

feedback

5 Answers

up vote 4 down vote accepted

If the subdirectory already exists, this method does nothing.

http://msdn.microsoft.com/en-us/library/h8dtw1d6.aspx

Use Directory.Exists to check if it exists http://msdn.microsoft.com/en-us/library/system.io.directory.exists.aspx

link|improve this answer
feedback
if(System.IO.Directory.GetDirectories(path).Length>0)
{
//if this condition is true-->> Directory has sub-sirectories

} 
link|improve this answer
feedback

Do you need this?

if(Directory.Exists(path)) 
{
     // This path is a directory
     ProcessDirectory(path);
}
link|improve this answer
feedback

Use System.IO.Directory.Exists. MSDN is your friend :)

link|improve this answer
feedback

System.IO.Directory.Exists

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.