You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
369 B
15 lines
369 B
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
package dirfs
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
)
|
|
|
|
// RemoveAll implements webdav.File. No removal is supported and this always
|
|
// returns os.ErrPermission.
|
|
func (dfs *FS) RemoveAll(ctx context.Context, name string) error {
|
|
return &os.PathError{Op: "rm", Path: name, Err: os.ErrPermission}
|
|
}
|
|
|