public Task <bool> ExistsAsync(string path)
        {
            if (String.IsNullOrEmpty(path))
            {
                throw new ArgumentNullException(nameof(path));
            }

            return(UnscopedStorage.ExistsAsync(String.Concat(_pathPrefix, path)));
        }
Exemple #2
0
 public Task <bool> ExistsAsync(string path)
 {
     return(UnscopedStorage.ExistsAsync(String.Concat(_pathPrefix, path)));
 }