summaryrefslogtreecommitdiffhomepage
path: root/drive/driveimpl/dirfs/removeall.go
blob: 8fafc8c92bb04b0b078cc2c5508854c093b09ecf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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}
}