Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

C# is folder

using System.IO;

string Path = "C:Somefolderpath";
if (Directory.Exists(Path))
{
  Console.WriteLine("Directory " + Path + " Exists");
}
 
PREVIOUS NEXT
Tagged: #folder
ADD COMMENT
Topic
Name
8+2 =