diff options
Diffstat (limited to 'go/filer/filer.go')
| -rw-r--r-- | go/filer/filer.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/go/filer/filer.go b/go/filer/filer.go index e91218afb..a42d9ed8c 100644 --- a/go/filer/filer.go +++ b/go/filer/filer.go @@ -14,6 +14,6 @@ type Filer interface { FindFile(filePath string) (fid string, err error) ListDirectories(dirPath string) (dirs []DirectoryEntry, err error) ListFiles(dirPath string, lastFileName string, limit int) (files []FileEntry, err error) - DeleteDirectory(dirPath string) (err error) + DeleteDirectory(dirPath string, recursive bool) (err error) DeleteFile(filePath string) (fid string, err error) } |
