summaryrefslogtreecommitdiffhomepage
path: root/drive/driveimpl/dirfs/mkdir.go
blob: 6ed3ec27ea3327e579e4c8a79bb5a9aa1503552a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright (c) Tailscale Inc & contributors
// SPDX-License-Identifier: BSD-3-Clause

package dirfs

import (
	"context"
	"os"

	"tailscale.com/drive/driveimpl/shared"
)

// Mkdir implements webdav.FileSystem. All attempts to Mkdir a directory that
// already exists will succeed. All other attempts will fail with
// os.ErrPermission.
func (dfs *FS) Mkdir(ctx context.Context, name string, perm os.FileMode) error {
	nameWithoutStaticRoot, isStaticRoot := dfs.trimStaticRoot(name)
	if isStaticRoot || shared.IsRoot(name) {
		// root directory already exists, consider this okay
		return nil
	}

	child := dfs.childFor(nameWithoutStaticRoot)
	if child != nil {
		// child already exists, consider this okay
		return nil
	}

	return &os.PathError{Op: "mkdir", Path: name, Err: os.ErrPermission}
}