2022-08-28 13:21:57 +02:00
|
|
|
// Package cleanup provides the cleanup command.
|
2016-08-05 18:12:27 +02:00
|
|
|
package cleanup
|
|
|
|
|
|
|
|
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: "cleanup remote:path",
|
2020-09-03 14:12:54 +02:00
|
|
|
Short: `Clean up the remote if possible.`,
|
2024-08-12 18:17:46 +02:00
|
|
|
Long: `Clean up the remote if possible. Empty the trash or delete old file
|
2016-08-05 18:12:27 +02:00
|
|
|
versions. Not supported by all remotes.
|
|
|
|
`,
|
2022-11-26 23:40:49 +01:00
|
|
|
Annotations: map[string]string{
|
|
|
|
"versionIntroduced": "v1.31",
|
2023-07-10 19:34:10 +02:00
|
|
|
"groups": "Important",
|
2022-11-26 23:40:49 +01:00
|
|
|
},
|
2016-08-05 18:12:27 +02:00
|
|
|
Run: func(command *cobra.Command, args []string) {
|
|
|
|
cmd.CheckArgs(1, 1, command, args)
|
|
|
|
fsrc := cmd.NewFsSrc(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.CleanUp(context.Background(), fsrc)
|
2016-08-05 18:12:27 +02:00
|
|
|
})
|
|
|
|
},
|
|
|
|
}
|