public static ValueTask <IFileReference[]> ListAsync(this IAbpStore store, string path, bool recursive = false,
                                                      bool withMetadata = false)
 {
     return(store.ListAsync(path, recursive, withMetadata));
 }
Example #2
0
 public ValueTask <IFileReference[]> ListAsync(string path, bool recursive, bool withMetadata)
 {
     return(_innerStore.ListAsync(path, recursive, withMetadata));
 }