2022-08-28 13:21:57 +02:00
|
|
|
// Package purge provides the purge command.
|
2016-08-05 18:12:27 +02:00
|
|
|
package purge
|
|
|
|
|
|
|
|
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: "purge remote:path",
|
|
|
|
Short: `Remove the path and all of its contents.`,
|
2024-08-12 18:17:46 +02:00
|
|
|
Long: `Remove the path and all of its contents. Note that this does not obey
|
2022-06-19 15:51:37 +02:00
|
|
|
include/exclude filters - everything will be removed. Use the
|
|
|
|
[delete](/commands/rclone_delete/) command if you want to selectively
|
|
|
|
delete files. To delete empty directories only, use command
|
|
|
|
[rmdir](/commands/rclone_rmdir/) or [rmdirs](/commands/rclone_rmdirs/).
|
2020-06-05 18:04:23 +02:00
|
|
|
|
|
|
|
**Important**: Since this can cause data loss, test first with the
|
|
|
|
` + "`--dry-run` or the `--interactive`/`-i`" + ` flag.
|
2016-08-05 18:12:27 +02:00
|
|
|
`,
|
2023-07-10 19:34:10 +02:00
|
|
|
Annotations: map[string]string{
|
|
|
|
"groups": "Important",
|
|
|
|
},
|
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.Purge(context.Background(), fdst, "")
|
2016-08-05 18:12:27 +02:00
|
|
|
})
|
|
|
|
},
|
|
|
|
}
|