guillefix
3
Q:

c# check if a directory exists

	string directory = @"C:\folder name";
  
	if (Directory.Exists(directory)
    {
    	// Directory exits!
    }
1
// get the file attributes for file or directory
FileAttributes attr = File.GetAttributes(@"c:\Temp");

//detect whether its a directory or file
if ((attr & FileAttributes.Directory) == FileAttributes.Directory)
    MessageBox.Show("Its a directory");
else
    MessageBox.Show("Its a file");
1
using System.IO;

public static void Main(string[] args)
{
	string directory = @"C:\folder name";
  
	if (Directory.Exitst(directory)
    {
    	// Directory exits!
    }
    else
    {
    	// Directory dosn't exits.
    }
}
1

New to Communities?

Join the community