webdav: rename MoveAll to Move

This commit is contained in:
Simon Ser
2024-01-18 13:22:19 +01:00
parent 4493704689
commit 790ebfc5f8
3 changed files with 5 additions and 5 deletions

View File

@@ -214,7 +214,7 @@ func (fs LocalFileSystem) Copy(ctx context.Context, src, dst string, options *Co
return created, nil
}
func (fs LocalFileSystem) MoveAll(ctx context.Context, src, dst string, overwrite bool) (created bool, err error) {
func (fs LocalFileSystem) Move(ctx context.Context, src, dst string, overwrite bool) (created bool, err error) {
srcPath, err := fs.localPath(src)
if err != nil {
return false, err