EpLibrary.cs.FolderHelper.IsFileExist C# (CSharp) Méthode

IsFileExist() public static méthode

Check if the given file path exists
public static IsFileExist ( String path ) : bool
path String the file path to check
Résultat bool
        public static bool IsFileExist(String path)
        {
            return File.Exists(path);
        }