2016-08-06 00:12:27 +08:00
|
|
|
package cleanup
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/ncw/rclone/cmd"
|
|
|
|
"github.com/ncw/rclone/fs"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2016-10-22 19:05:45 +08:00
|
|
|
cmd.Root.AddCommand(commandDefintion)
|
2016-08-06 00:12:27 +08:00
|
|
|
}
|
|
|
|
|
2016-10-22 19:05:45 +08:00
|
|
|
var commandDefintion = &cobra.Command{
|
2016-08-06 00:12:27 +08:00
|
|
|
Use: "cleanup remote:path",
|
|
|
|
Short: `Clean up the remote if possible`,
|
|
|
|
Long: `
|
|
|
|
Clean up the remote if possible. Empty the trash or delete old file
|
|
|
|
versions. Not supported by all remotes.
|
|
|
|
`,
|
|
|
|
Run: func(command *cobra.Command, args []string) {
|
|
|
|
cmd.CheckArgs(1, 1, command, args)
|
|
|
|
fsrc := cmd.NewFsSrc(args)
|
2016-12-05 00:52:24 +08:00
|
|
|
cmd.Run(true, false, command, func() error {
|
2016-08-06 00:12:27 +08:00
|
|
|
return fs.CleanUp(fsrc)
|
|
|
|
})
|
|
|
|
},
|
|
|
|
}
|