Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

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");
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #check #path #directory #file
ADD COMMENT
Topic
Name
5+8 =