BinaryRage.Storage.ExistingStorageCheck C# (CSharp) Méthode

ExistingStorageCheck() public static méthode

public static ExistingStorageCheck ( string key, string filelocation ) : bool
key string
filelocation string
Résultat bool
        public static bool ExistingStorageCheck(string key, string filelocation)
        {
            return File.Exists(GetExactFileLocation(key, filelocation));
        }

Usage Example

Exemple #1
0
 static public bool Exists(string key, string filelocation)
 {
     return(Storage.ExistingStorageCheck(key, filelocation));
 }