mirror of
https://github.com/rclone/rclone.git
synced 2024-11-29 03:48:27 +08:00
32 lines
735 B
Go
32 lines
735 B
Go
|
package rmdir
|
||
|
|
||
|
import (
|
||
|
"github.com/ncw/rclone/cmd"
|
||
|
"github.com/ncw/rclone/fs"
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
cmd.Root.AddCommand(rmdirsCmd)
|
||
|
}
|
||
|
|
||
|
var rmdirsCmd = &cobra.Command{
|
||
|
Use: "rmdirs remote:path",
|
||
|
Short: `Remove any empty directoryies under the path.`,
|
||
|
Long: `This removes any empty directories (or directories that only contain
|
||
|
empty directories) under the path that it finds, including the path if
|
||
|
it has nothing in.
|
||
|
|
||
|
This is useful for tidying up remotes that rclone has left a lot of
|
||
|
empty directories in.
|
||
|
|
||
|
`,
|
||
|
Run: func(command *cobra.Command, args []string) {
|
||
|
cmd.CheckArgs(1, 1, command, args)
|
||
|
fdst := cmd.NewFsDst(args)
|
||
|
cmd.Run(true, command, func() error {
|
||
|
return fs.Rmdirs(fdst)
|
||
|
})
|
||
|
},
|
||
|
}
|