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

IsPathExist() public static method

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