Amin R.
-4
Q:

c# check if string is directory

// 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
File.GetAttributes(data.Path).HasFlag(FileAttributes.Directory)
0

New to Communities?

Join the community