mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
44ff766f98
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
31 lines
789 B
Go
31 lines
789 B
Go
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"
|
|
)
|
|
|
|
func init() {
|
|
cmd.Root.AddCommand(commandDefinition)
|
|
}
|
|
|
|
var commandDefinition = &cobra.Command{
|
|
Use: "mkdir remote:path",
|
|
Short: `Make the path if it doesn't already exist.`,
|
|
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, "")
|
|
})
|
|
},
|
|
}
|