2022-08-28 19:21:57 +08:00
|
|
|
// Package rmdir provides the rmdir command.
|
2016-08-06 00:12:27 +08:00
|
|
|
package rmdir
|
|
|
|
|
|
|
|
import (
|
2019-06-17 16:34:30 +08:00
|
|
|
"context"
|
|
|
|
|
2019-07-29 01:47:38 +08:00
|
|
|
"github.com/rclone/rclone/cmd"
|
|
|
|
"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: "rmdir remote:path",
|
2020-11-13 18:07:34 +08:00
|
|
|
Short: `Remove the empty directory at path.`,
|
2016-08-06 00:12:27 +08:00
|
|
|
Long: `
|
2020-11-13 18:07:34 +08: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
|
2022-06-19 21:51:37 +08:00
|
|
|
command [rmdirs](/commands/rclone_rmdirs/) (or [delete](/commands/rclone_delete/)
|
|
|
|
with option ` + "`--rmdirs`" + `) to do that.
|
2020-11-13 18:07:34 +08:00
|
|
|
|
2022-06-19 21:51:37 +08:00
|
|
|
To delete a path and any objects in it, use [purge](/commands/rclone_purge/) command.
|
2020-11-13 18:07:34 +08:00
|
|
|
`,
|
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)
|
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.Rmdir(context.Background(), fdst, "")
|
2016-08-06 00:12:27 +08:00
|
|
|
})
|
|
|
|
},
|
|
|
|
}
|