mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 00:13:49 +01:00
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
@ -2,8 +2,10 @@ package mkdir
|
||||
|
||||
import (
|
||||
"context"
|
||||
"strings"
|
||||
|
||||
"github.com/rclone/rclone/cmd"
|
||||
"github.com/rclone/rclone/fs"
|
||||
"github.com/rclone/rclone/fs/operations"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
@ -18,6 +20,9 @@ var commandDefinition = &cobra.Command{
|
||||
Run: func(command *cobra.Command, args []string) {
|
||||
cmd.CheckArgs(1, 1, command, 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 {
|
||||
return operations.Mkdir(context.Background(), fdst, "")
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user