rclone/docs/content/commands/rclone_about.md

79 lines
1.9 KiB
Markdown
Raw Normal View History

2018-04-28 20:46:27 +10:00
---
title: "rclone about"
description: "Get quota information from the remote."
2018-04-28 20:46:27 +10:00
slug: rclone_about
url: /commands/rclone_about/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/about/ and as part of making a release run "make commanddocs"
2018-04-28 20:46:27 +10:00
---
# rclone about
2018-04-28 20:46:27 +10:00
Get quota information from the remote.
## Synopsis
2018-04-28 20:46:27 +10:00
2021-06-09 01:57:04 +10:00
`rclone about` prints quota information about a remote to standard
2021-02-03 00:42:35 +11:00
output. The output is typically used, free, quota and trash contents.
2018-04-28 20:46:27 +10:00
2021-06-09 01:57:04 +10:00
E.g. Typical output from `rclone about remote:` is:
2018-04-28 20:46:27 +10:00
Total: 17G
Used: 7.444G
Free: 1.315G
Trashed: 100.000M
Other: 8.241G
Where the fields are:
* Total: total size available.
* Used: total size used
2021-02-03 00:42:35 +11:00
* Free: total space available to this user.
* Trashed: total space used by trash
* Other: total amount in other storage (e.g. Gmail, Google Photos)
2018-04-28 20:46:27 +10:00
* Objects: total number of objects in the storage
2021-02-03 00:42:35 +11:00
Not all backends print all fields. Information is not included if it is not
provided by a backend. Where the value is unlimited it is omitted.
2018-04-28 20:46:27 +10:00
2021-02-03 00:42:35 +11:00
Applying a `--full` flag to the command prints the bytes in full, e.g.
2018-04-28 20:46:27 +10:00
Total: 18253611008
Used: 7993453766
Free: 1411001220
Trashed: 104857602
Other: 8849156022
2021-06-09 01:57:04 +10:00
A `--json` flag generates conveniently computer readable output, e.g.
2018-04-28 20:46:27 +10:00
{
"total": 18253611008,
"used": 7993453766,
"trashed": 104857602,
"other": 8849156022,
"free": 1411001220
}
2021-02-03 00:42:35 +11:00
Not all backends support the `rclone about` command.
See [List of backends that do not support about](https://rclone.org/overview/#optional-features)
2018-04-28 20:46:27 +10:00
```
rclone about remote: [flags]
```
## Options
2018-04-28 20:46:27 +10:00
```
--full Full numbers instead of SI units
-h, --help help for about
--json Format output as JSON
```
See the [global flags page](/flags/) for global options not listed here.
## SEE ALSO
2018-04-28 20:46:27 +10:00
2018-10-15 21:03:08 +11:00
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
2018-04-28 20:46:27 +10:00