2016-08-04 04:36:28 +08:00
|
|
|
---
|
|
|
|
title: "rclone rmdir"
|
2021-02-02 21:42:35 +08:00
|
|
|
description: "Remove the empty directory at path."
|
2020-02-10 20:31:45 +08:00
|
|
|
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/rmdir/ and as part of making a release run "make commanddocs"
|
2016-08-04 04:36:28 +08:00
|
|
|
---
|
2020-05-22 18:17:37 +08:00
|
|
|
# rclone rmdir
|
2016-08-04 04:36:28 +08:00
|
|
|
|
2021-02-02 21:42:35 +08:00
|
|
|
Remove the empty directory at path.
|
2016-08-04 04:36:28 +08:00
|
|
|
|
2020-05-22 18:17:37 +08:00
|
|
|
## Synopsis
|
2016-08-04 04:36:28 +08:00
|
|
|
|
|
|
|
|
2021-02-02 21:42:35 +08:00
|
|
|
This removes empty directory given by path. Will not remove the path if it
|
|
|
|
has any objects in it, not even empty subdirectories. Use
|
2022-07-10 01:08:20 +08:00
|
|
|
command [rmdirs](/commands/rclone_rmdirs/) (or [delete](/commands/rclone_delete/)
|
|
|
|
with option `--rmdirs`) to do that.
|
2021-02-02 21:42:35 +08:00
|
|
|
|
2022-07-10 01:08:20 +08:00
|
|
|
To delete a path and any objects in it, use [purge](/commands/rclone_purge/) command.
|
2021-02-02 21:42:35 +08:00
|
|
|
|
2016-08-04 04:36:28 +08:00
|
|
|
|
|
|
|
```
|
2017-09-30 21:19:47 +08:00
|
|
|
rclone rmdir remote:path [flags]
|
|
|
|
```
|
|
|
|
|
2020-05-22 18:17:37 +08:00
|
|
|
## Options
|
2017-09-30 21:19:47 +08:00
|
|
|
|
|
|
|
```
|
|
|
|
-h, --help help for rmdir
|
2016-08-04 04:36:28 +08:00
|
|
|
```
|
|
|
|
|
2023-08-02 17:02:38 +08:00
|
|
|
|
|
|
|
## Important Options
|
|
|
|
|
|
|
|
Important flags useful for most commands.
|
|
|
|
|
|
|
|
```
|
|
|
|
-n, --dry-run Do a trial run with no permanent changes
|
|
|
|
-i, --interactive Enable interactive mode
|
|
|
|
-v, --verbose count Print lots more stuff (repeat for more)
|
|
|
|
```
|
|
|
|
|
2019-06-20 23:18:02 +08:00
|
|
|
See the [global flags page](/flags/) for global options not listed here.
|
|
|
|
|
2023-08-02 17:02:38 +08:00
|
|
|
# SEE ALSO
|
2016-08-04 04:36:28 +08:00
|
|
|
|
2018-10-15 18:03:08 +08:00
|
|
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
2018-03-19 18:06:13 +08:00
|
|
|
|