Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# check if a directory exists

	string directory = @"C:folder name";
  
	if (Directory.Exists(directory)
    {
    	// Directory exits!
    }
 
PREVIOUS NEXT
Tagged: #check #directory #exists
ADD COMMENT
Topic
Name
7+1 =