AliaSQL.Core.FileSystem.FileExists C# (CSharp) Method

FileExists() public method

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