mirror of
https://github.com/rclone/rclone.git
synced 2024-12-27 17:38:58 +01:00
f78cd1e043
- Change rclone/fs interfaces to accept context.Context - Update interface implementations to use context.Context - Change top level usage to propagate context to lover level functions Context propagation is needed for stopping transfers and passing other request-scoped values.
26 lines
546 B
Go
26 lines
546 B
Go
package mkdir
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/ncw/rclone/cmd"
|
|
"github.com/ncw/rclone/fs/operations"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func init() {
|
|
cmd.Root.AddCommand(commandDefintion)
|
|
}
|
|
|
|
var commandDefintion = &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)
|
|
cmd.Run(true, false, command, func() error {
|
|
return operations.Mkdir(context.Background(), fdst, "")
|
|
})
|
|
},
|
|
}
|