|
|

楼主 |
发表于 2019-11-15 10:47:44
|
显示全部楼层
1T 的要用 WebDAV 的方式才能挂载 OneDrive。
但是这个有限制,就是最大文件不能超过 2G,官方好像没有说明,但是实测不能超过 2G。
- # 首先登陆 OneDrive,将自己的地址转换为以下格式。
- # 原本的地址
- https://xxxxxxxcn-my.sharepoint.com/personal/rootmaster_xxxx_xxx_cn/_layouts/15/onedrive.aspx
- # 可以作为 WebDAV 挂载的地址
- https://xxxxxxxcn-my.sharepoint.com/personal/rootmaster_xxxx_xxx_cn/Documents
- # 配置 rclone,选择 Webdav
- rclone config
- # url> 填写以上可以作为 WebDAV 挂载的地址
- # Choose a number from below, or type in your own value
- # 选择 3 / Sharepoint
- # 然后输入 email 账号和密码
- # bearer_token> 默认留空
复制代码 |
|