Syncing OneDrive folder located across multiple disk drives
OneDrive doesn’t have the option to select folders from multiple disk drives – this wasn’t a problem for other online storage/synchronization tools that I have used previously, however OneDrive wants you to simply selection one “root” folder and it will only included files/folders beneath that.
I have a scenario where I have a 100GB SSD disk for frequently accessed files and a 1TB slower SATA disk for photos and archives. I have files and folders in both drives that I want to be synchronized to the OneDrive “Cloud”.
So to do this I needed to use the Windows command line tool MKLINK to create a symbolic link.
C:\Users\danovich\OneDrive\ <——- “Root” OneDrive folder, located on the 100GB SSD drive
D:\Data\Photos\ <——- Photos folder, located on the 1TB SATA drive, containing 500GB of photos I want to be sync’d into OneDrive
Open a command prompt with admin privledges and type:
mklink /d "C:\Users\Dan\OneDrive\Photos" "D:\Data\Photos"
You’ll get a success message:
symbolic link created for C:\Users\Dan\OneDrive\Photos <<===>> D:\Data\Photos
Data will now be syncing with OneDrive and the “Photos” symbolic link, essentially a shortcut, will appear in the OneDrive folder:
----------------------------------------------------------------------------
I use a maximum of one Google Ad per post to help offset some of my blog hosting costs.
----------------------------------------------------------------------------