mirror of
https://github.com/rclone/rclone.git
synced 2024-11-08 09:35:26 +01:00
27 lines
598 B
Go
27 lines
598 B
Go
package rmdir
|
|
|
|
import (
|
|
"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: "rmdir remote:path",
|
|
Short: `Remove the path if empty.`,
|
|
Long: `
|
|
Remove the path. Note that you can't remove a path with
|
|
objects in it, use purge for that.`,
|
|
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.Rmdir(fdst, "")
|
|
})
|
|
},
|
|
}
|