2022-08-28 19:21:57 +08:00
|
|
|
// Package mkdir provides the mkdir command.
|
2016-08-06 00:12:27 +08:00
|
|
|
package mkdir
|
|
|
|
|
|
|
|
import (
|
2019-06-17 16:34:30 +08:00
|
|
|
"context"
|
2020-07-08 18:56:09 +08:00
|
|
|
"strings"
|
2019-06-17 16:34:30 +08:00
|
|
|
|
2019-07-29 01:47:38 +08:00
|
|
|
"github.com/rclone/rclone/cmd"
|
2020-07-08 18:56:09 +08:00
|
|
|
"github.com/rclone/rclone/fs"
|
2019-07-29 01:47:38 +08:00
|
|
|
"github.com/rclone/rclone/fs/operations"
|
2016-08-06 00:12:27 +08:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2019-10-11 23:58:11 +08:00
|
|
|
cmd.Root.AddCommand(commandDefinition)
|
2016-08-06 00:12:27 +08:00
|
|
|
}
|
|
|
|
|
2019-10-11 23:58:11 +08:00
|
|
|
var commandDefinition = &cobra.Command{
|
2016-08-06 00:12:27 +08:00
|
|
|
Use: "mkdir remote:path",
|
|
|
|
Short: `Make the path if it doesn't already exist.`,
|
2023-07-11 01:34:10 +08:00
|
|
|
Annotations: map[string]string{
|
|
|
|
"groups": "Important",
|
|
|
|
},
|
2016-08-06 00:12:27 +08:00
|
|
|
Run: func(command *cobra.Command, args []string) {
|
|
|
|
cmd.CheckArgs(1, 1, command, args)
|
2018-05-08 00:58:16 +08:00
|
|
|
fdst := cmd.NewFsDir(args)
|
2020-07-08 18:56:09 +08:00
|
|
|
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")
|
|
|
|
}
|
2016-12-05 00:52:24 +08:00
|
|
|
cmd.Run(true, false, command, func() error {
|
2019-06-17 16:34:30 +08:00
|
|
|
return operations.Mkdir(context.Background(), fdst, "")
|
2016-08-06 00:12:27 +08:00
|
|
|
})
|
|
|
|
},
|
|
|
|
}
|