使用rclone从Google Drive的共享文件夹下载文件



我想知道rclone是否能够从Google Drive的共享文件夹加载文件。如果是,命令是什么?

rclone sync cloud_name:(what is the shared folder name?)file_name destination_path

您需要使用rclone config为Google"共享驱动器"创建remote:。看见https://rclone.org/drive/

线路Configure this as a Shared Drive (Team Drive)?

那么同步将是:

rclone sync SharedDriveName:"Directory/Directory" YourOtherRemote:"Directory/Directory"

有用的标志有:

-P--progress(参见传输过程中的进度(

-vv(见详细日志(

--create-empty-src-dirs(重新创建空目录(

-u--update(跳过目标上较新的文件(

--drive-server-side-across-configs(如果你想同步原生谷歌文档(

--dry-run(实践(

最新更新