forked from TrueCloudLab/rclone
mkdir: warn when using mkdir on remotes which can't have empty directories
It is a source of confusion for users that `rclone mkdir` on a remote which can't have empty directories such as s3/b2 does nothing. This emits a warning at NOTICE level if the user tries to mkdir a directory not at the root for a remote which can't have empty directories. See: https://forum.rclone.org/t/mkdir-on-b2-consider-adding-some-output/17689
This commit is contained in:
parent
bfa5715017
commit
44ff766f98
1 changed files with 5 additions and 0 deletions
|
@ -2,8 +2,10 @@ package mkdir
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
"strings"
|
||||||
|
|
||||||
"github.com/rclone/rclone/cmd"
|
"github.com/rclone/rclone/cmd"
|
||||||
|
"github.com/rclone/rclone/fs"
|
||||||
"github.com/rclone/rclone/fs/operations"
|
"github.com/rclone/rclone/fs/operations"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
)
|
)
|
||||||
|
@ -18,6 +20,9 @@ var commandDefinition = &cobra.Command{
|
||||||
Run: func(command *cobra.Command, args []string) {
|
Run: func(command *cobra.Command, args []string) {
|
||||||
cmd.CheckArgs(1, 1, command, args)
|
cmd.CheckArgs(1, 1, command, args)
|
||||||
fdst := cmd.NewFsDir(args)
|
fdst := cmd.NewFsDir(args)
|
||||||
|
if !fdst.Features().CanHaveEmptyDirectories && strings.Contains(fdst.Root(), "/") {
|
||||||
|
fs.Logf(fdst, "Warning: running mkdir on a remote which can't have empty directories does nothing")
|
||||||
|
}
|
||||||
cmd.Run(true, false, command, func() error {
|
cmd.Run(true, false, command, func() error {
|
||||||
return operations.Mkdir(context.Background(), fdst, "")
|
return operations.Mkdir(context.Background(), fdst, "")
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue