如何将任意 Windows 文件夹与 Dropbox 帐户同步?

Ger*_*Yin 2 windows dropbox

我如何使用 Dropbox 执行此操作:

  • 我想确保我所有的文件都存储在C:\Users\Gerard\ImagesC:\Users\Gerard\Documents自动在线存储。
  • 我不想手动将它们复制到C:\Users\Gerard\Dropbox文件夹中,因为我很可能会忘记一些东西。
  • 我不想使用两倍的硬盘空间将所有文件从我的图像文件夹复制到我的保管箱。

我是不是该:

  • 停止使用C:\Users\Gerard\Images来存储东西,C:\Users\Gerard\Dropbox\Images而是将所有东西都存储在下面?或者...
  • 使用工具同步我的C:\Users\Gerard\ImagesC:\Users\Gerard\Documents文件C:\Users\Gerard\Dropbox

小智 7

使用MKLINK在 DropBox 文件夹和 Images 和 Documents 文件夹之间创建目录连接,以伪造 DropBox。

所以例如:

MKLINK /J C:\Users\Gerard\DropBox\Documents C:\Users\Gerard\Documents
MKLINK /J C:\Users\Gerard\DropBox\Images C:\Users\Gerard\Images
Run Code Online (Sandbox Code Playgroud)

这会在 DropBox 内创建一组“假”文件夹,而不会复制数据,并将上传您的所有照片和文档。换句话说,有一组额外的文件夹针对驱动器上的相同位置。

无论您在“假”还是原始位置修改文件,文件夹都将保持同步。