diff options
Diffstat (limited to 'weed/filer2/filer.go')
| -rw-r--r-- | weed/filer2/filer.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/filer2/filer.go b/weed/filer2/filer.go index 39be69d3a..ad7a3d906 100644 --- a/weed/filer2/filer.go +++ b/weed/filer2/filer.go @@ -117,11 +117,11 @@ func (f *Filer) DeleteEntry(p FullPath) (fileEntry *Entry, err error) { return f.store.DeleteEntry(p) } -func (f *Filer) ListDirectoryEntries(p FullPath) ([]*Entry, error) { +func (f *Filer) ListDirectoryEntries(p FullPath, startFileName string, inclusive bool, limit int) ([]*Entry, error) { if strings.HasSuffix(string(p), "/") { p = p[0:len(p)-1] } - return f.store.ListDirectoryEntries(p) + return f.store.ListDirectoryEntries(p, startFileName, inclusive, limit) } func (f *Filer) cacheGetDirectory(dirpath string) (*Entry) { |
