2024-02-21 12:40:12 +00:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
|
|
|
|
package dirfs
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"os"
|
|
|
|
|
2024-04-02 20:32:30 +00:00
|
|
|
"tailscale.com/drive/driveimpl/shared"
|
2024-02-21 12:40:12 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// 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}
|
|
|
|
}
|