EpLibrary.cs.FolderHelper.IsDirectoryExist C# (CSharp) Method

IsDirectoryExist() public static method

Check if the given directory exists
public static IsDirectoryExist ( String path ) : bool
path String the directory path to check
return bool
        public static bool IsDirectoryExist(String path)
        {
            return Directory.Exists(path);
        }