AcTools.Utils.FileUtils.Exists C# (CSharp) Метод

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

If directory or file exists.
public static Exists ( string location ) : bool
location string
Результат bool
        public static bool Exists(string location) {
            return File.Exists(location) || Directory.Exists(location);
        }