2016-08-05 18:12:27 +02:00
|
|
|
package rmdir
|
|
|
|
|
|
|
|
import (
|
2019-06-17 10:34:30 +02:00
|
|
|
"context"
|
|
|
|
|
2019-07-28 19:47:38 +02:00
|
|
|
"github.com/rclone/rclone/cmd"
|
|
|
|
"github.com/rclone/rclone/fs/operations"
|
2016-08-05 18:12:27 +02:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2019-10-11 17:58:11 +02:00
|
|
|
cmd.Root.AddCommand(commandDefinition)
|
2016-08-05 18:12:27 +02:00
|
|
|
}
|
|
|
|
|
2019-10-11 17:58:11 +02:00
|
|
|
var commandDefinition = &cobra.Command{
|
2016-08-05 18:12:27 +02:00
|
|
|
Use: "rmdir remote:path",
|
2020-11-13 11:07:34 +01:00
|
|
|
Short: `Remove the empty directory at path.`,
|
2016-08-05 18:12:27 +02:00
|
|
|
Long: `
|
2020-11-13 11:07:34 +01:00
|
|
|
This removes empty directory given by path. Will not remove the path if it
|
|
|
|
has any objects in it, not even empty subdirectories. Use
|
|
|
|
command ` + "`rmdirs`" + ` (or ` + "`delete`" + ` with option ` + "`--rmdirs`" + `)
|
|
|
|
to do that.
|
|
|
|
|
|
|
|
To delete a path and any objects in it, use ` + "`purge`" + ` command.
|
|
|
|
`,
|
2016-08-05 18:12:27 +02:00
|
|
|
Run: func(command *cobra.Command, args []string) {
|
|
|
|
cmd.CheckArgs(1, 1, command, args)
|
2018-05-07 18:58:16 +02:00
|
|
|
fdst := cmd.NewFsDir(args)
|
2016-12-04 17:52:24 +01:00
|
|
|
cmd.Run(true, false, command, func() error {
|
2019-06-17 10:34:30 +02:00
|
|
|
return operations.Rmdir(context.Background(), fdst, "")
|
2016-08-05 18:12:27 +02:00
|
|
|
})
|
|
|
|
},
|
|
|
|
}
|