AliaSQL.Core.FileSystem.FileExists C# (CSharp) Méthode

FileExists() public méthode

public FileExists ( string relativePath ) : bool
relativePath string
Résultat bool
        public bool FileExists(string relativePath)
        {
            var retval = File.Exists(relativePath);
            return retval;
        }