rclone/docs/content/commands/rclone_link.md

56 lines
1.7 KiB
Markdown
Raw Normal View History

2018-04-28 10:46:27 +00:00
---
title: "rclone link"
description: "Generate public link to file/folder."
2018-04-28 10:46:27 +00:00
slug: rclone_link
url: /commands/rclone_link/
2022-12-20 17:16:14 +00:00
versionIntroduced: v1.41
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/link/ and as part of making a release run "make commanddocs"
2018-04-28 10:46:27 +00:00
---
# rclone link
2018-04-28 10:46:27 +00:00
Generate public link to file/folder.
## Synopsis
2018-04-28 10:46:27 +00:00
2020-09-02 15:59:04 +00:00
rclone link will create, retrieve or remove a public link to the given
file or folder.
2018-04-28 10:46:27 +00:00
rclone link remote:path/to/file
rclone link remote:path/to/folder/
2020-09-02 15:59:04 +00:00
rclone link --unlink remote:path/to/folder/
rclone link --expire 1d remote:path/to/file
If you supply the --expire flag, it will set the expiration time
otherwise it will use the default (100 years). **Note** not all
backends support the --expire flag - if the backend doesn't support it
then the link returned won't expire.
Use the --unlink flag to remove existing public links to the file or
folder. **Note** not all backends support "--unlink" flag - those that
don't will just ignore it.
2018-04-28 10:46:27 +00:00
2020-09-02 15:59:04 +00:00
If successful, the last line of the output will contain the
link. Exact capabilities depend on the remote, but the link will
always by default be created with the least constraints – e.g. no
expiry, no password protection, accessible without account.
2018-04-28 10:46:27 +00:00
```
rclone link remote:path [flags]
```
## Options
2018-04-28 10:46:27 +00:00
```
2021-06-08 15:57:04 +00:00
--expire Duration The amount of time that the link will be valid (default off)
2020-09-02 15:59:04 +00:00
-h, --help help for link
--unlink Remove existing public link to file/folder
2018-04-28 10:46:27 +00:00
```
See the [global flags page](/flags/) for global options not listed here.
## SEE ALSO
2018-04-28 10:46:27 +00:00
2018-10-15 10:03:08 +00:00
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
2018-04-28 10:46:27 +00:00