Answers for "how to check if a path is a directory or file c#"

C#
2

c# check if string is directory

File.GetAttributes(data.Path).HasFlag(FileAttributes.Directory)
Posted by: Guest on November-19-2020
1

c# check if string is path or file

// 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");
Posted by: Guest on August-13-2020
0

how to check if a path is a directory or file c#

// get the file attributes for file or directory
FileAttributes attr = File.GetAttributes(@"c:\Temp");

if (attr.HasFlag(FileAttributes.Directory))
    MessageBox.Show("Its a directory");
else
    MessageBox.Show("Its a file");
Posted by: Guest on November-20-2020

Code answers related to "how to check if a path is a directory or file c#"

C# Answers by Framework

Browse Popular Code Answers by Language