1
mirror of https://github.com/rclone/rclone synced 2024-09-29 04:49:43 +02:00

delete: clarify that it only deletes files not directories

This commit is contained in:
Nick Craig-Wood 2018-11-02 17:07:45 +00:00
parent ff87da9c3b
commit 1f05d5bf4a

View File

@ -14,9 +14,13 @@ var commandDefintion = &cobra.Command{
Use: "delete remote:path",
Short: `Remove the contents of path.`,
Long: `
Remove the contents of path. Unlike ` + "`" + `purge` + "`" + ` it obeys include/exclude
Remove the files in path. Unlike ` + "`" + `purge` + "`" + ` it obeys include/exclude
filters so can be used to selectively delete files.
` + "`" + `rclone delete` + "`" + ` only deletes objects but leaves the directory structure
alone. If you want to delete a directory and all of its contents use
` + "`" + `rclone purge` + "`" + `
Eg delete all files bigger than 100MBytes
Check what would be deleted first (use either)