AcTools.Utils.FileUtils.Exists C# (CSharp) Méthode

Exists() public static méthode

If directory or file exists.
public static Exists ( string location ) : bool
location string
Résultat bool
        public static bool Exists(string location) {
            return File.Exists(location) || Directory.Exists(location);
        }