c# check if string is directory code example
Example 1: c# check if a directory exists
string directory = @"C:\folder name";
if (Directory.Exists(directory)
{
}
Example 2: c# check if string is directory
File.GetAttributes(data.Path).HasFlag(FileAttributes.Directory)
Example 3: c# check if string is path or file
FileAttributes attr = File.GetAttributes(@"c:\Temp");
if ((attr & FileAttributes.Directory) == FileAttributes.Directory)
MessageBox.Show("Its a directory");
else
MessageBox.Show("Its a file");