EpLibrary.cs.FolderHelper.IsPathExist C# (CSharp) Метод

IsPathExist() публичный статический Метод

Check if the given path exists
public static IsPathExist ( String path ) : bool
path String the path to check
Результат bool
        public static bool IsPathExist(String path)
        {
            return Directory.Exists(path) || File.Exists(path);
        }