1. You can use OneDrive and mount it as a network drive, works great with small files, with bigger one's not so great.
Log into OneDrive from the web browser, after that look at the end of URL, there should be cid=xxxxxxxxxxxxxx.
Create cmd/bat file with:
@echo off
net use o:
https://d.docs.live.net/xxxxxxxxxxxxxx/ /user:<ms-account-email> <password>
pause
note that o: is the drive letter, xxxxxxxxxxxxxx is the cid.
To unmount the drive create another cmd/bat file with:
@echo off
net use o: /delete
Now you can use these cmd/bat files in User Defined Tools, give them beautiful icons and keyboard shortcuts :D
2. Use some kind of sync program, I like Syncthing because it's portable
and doesn't require installation. It has no central cloud storage, it
syncs between nodes (devices which are running Syncthing).
So if you
want to sync between 2 devices, then both have to be online. Of course
you can setup a node which is 24/7 available and then it is like a
central sync storage.
I have a low powered/silent/small computer which is 24/7 online and use it as a download/media/sync station.
