exSpriteAnimationDB.DBExists C# (CSharp) Method

DBExists() public static method

public static DBExists ( ) : bool
return bool
    public static bool DBExists()
    {
        dbPath = EditorPrefs.GetString( dbKey, dbPath );
        FileInfo fileInfo = new FileInfo(dbPath);
        return fileInfo.Exists;
    }