Horje
how to check if a path is a directory or file c# Code Example
c# check if string is directory
File.GetAttributes(data.Path).HasFlag(FileAttributes.Directory)
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");
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");




Csharp

Related
save file with unique name c# Code Example save file with unique name c# Code Example
create sequence of squares in c# Code Example create sequence of squares in c# Code Example
list search c# Code Example list search c# Code Example
c# ignore enter key Code Example c# ignore enter key Code Example
translate Code Example translate Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11