BinaryRage.Storage.ExistingStorageCheck C# (CSharp) Method

ExistingStorageCheck() public static method

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

Usage Example

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