2016-08-03 22:36:28 +02:00
|
|
|
---
|
|
|
|
title: "rclone delete"
|
2021-02-02 14:42:35 +01:00
|
|
|
description: "Remove the files in path."
|
2016-08-03 22:36:28 +02:00
|
|
|
slug: rclone_delete
|
|
|
|
url: /commands/rclone_delete/
|
2020-02-10 13:31:45 +01:00
|
|
|
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/delete/ and as part of making a release run "make commanddocs"
|
2016-08-03 22:36:28 +02:00
|
|
|
---
|
2020-05-22 12:17:37 +02:00
|
|
|
# rclone delete
|
2016-08-03 22:36:28 +02:00
|
|
|
|
2021-02-02 14:42:35 +01:00
|
|
|
Remove the files in path.
|
2016-08-03 22:36:28 +02:00
|
|
|
|
2020-05-22 12:17:37 +02:00
|
|
|
## Synopsis
|
2016-08-03 22:36:28 +02:00
|
|
|
|
|
|
|
|
2018-11-24 14:44:25 +01:00
|
|
|
Remove the files in path. Unlike `purge` it obeys include/exclude
|
2016-08-03 22:36:28 +02:00
|
|
|
filters so can be used to selectively delete files.
|
|
|
|
|
2021-02-02 14:42:35 +01:00
|
|
|
`rclone delete` only deletes files but leaves the directory structure
|
2018-11-24 14:44:25 +01:00
|
|
|
alone. If you want to delete a directory and all of its contents use
|
2021-02-02 14:42:35 +01:00
|
|
|
the `purge` command.
|
2018-11-24 14:44:25 +01:00
|
|
|
|
2021-02-02 14:42:35 +01:00
|
|
|
If you supply the `--rmdirs` flag, it will remove all empty directories along with it.
|
|
|
|
You can also use the separate command `rmdir` or `rmdirs` to
|
|
|
|
delete empty directories only.
|
2020-05-16 16:11:55 +02:00
|
|
|
|
2021-06-08 17:57:04 +02:00
|
|
|
For example, to delete all files bigger than 100 MiB, you may first want to
|
|
|
|
check what would be deleted (use either):
|
2016-08-03 22:36:28 +02:00
|
|
|
|
|
|
|
rclone --min-size 100M lsl remote:path
|
|
|
|
rclone --dry-run --min-size 100M delete remote:path
|
|
|
|
|
2021-02-02 14:42:35 +01:00
|
|
|
Then proceed with the actual delete:
|
2016-08-03 22:36:28 +02:00
|
|
|
|
|
|
|
rclone --min-size 100M delete remote:path
|
|
|
|
|
2021-03-02 20:11:57 +01:00
|
|
|
That reads "delete everything with a minimum size of 100 MiB", hence
|
2021-06-08 17:57:04 +02:00
|
|
|
delete all files bigger than 100 MiB.
|
2016-08-03 22:36:28 +02:00
|
|
|
|
2020-09-02 17:59:04 +02:00
|
|
|
**Important**: Since this can cause data loss, test first with the
|
|
|
|
`--dry-run` or the `--interactive`/`-i` flag.
|
|
|
|
|
2016-08-03 22:36:28 +02:00
|
|
|
|
|
|
|
```
|
2017-09-30 15:19:47 +02:00
|
|
|
rclone delete remote:path [flags]
|
|
|
|
```
|
|
|
|
|
2020-05-22 12:17:37 +02:00
|
|
|
## Options
|
2017-09-30 15:19:47 +02:00
|
|
|
|
|
|
|
```
|
2020-05-16 16:11:55 +02:00
|
|
|
-h, --help help for delete
|
|
|
|
--rmdirs rmdirs removes empty directories but leaves root intact
|
2016-08-03 22:36:28 +02:00
|
|
|
```
|
|
|
|
|
2019-06-20 17:18:02 +02:00
|
|
|
See the [global flags page](/flags/) for global options not listed here.
|
|
|
|
|
2020-05-22 12:17:37 +02:00
|
|
|
## SEE ALSO
|
2016-08-03 22:36:28 +02:00
|
|
|
|
2018-10-15 12:03:08 +02:00
|
|
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
2018-03-19 11:06:13 +01:00
|
|
|
|