Answers for "c# check if is directory"

C#
5

c# check if a directory exists

string directory = @"C:folder name";
  
	if (Directory.Exists(directory)
    {
    	// Directory exits!
    }
Posted by: Guest on October-20-2020
2

c# check if string is directory

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

Code answers related to "c# check if is directory"

C# Answers by Framework

Browse Popular Code Answers by Language