Hello,
I just purchased a new MacBook Pro which will be used for both MacOS and Windows 10 via Bootcamp. I have limited SSD space, so I wanted to try to make them share a Dropbox folder.
My plan is to create three partitions - One with HFS (or whatever the MacOS file system is called), one with NTFS for Windows 10 and a third partition with FAT32 that both OS's can read/write without issue.
However, that would mean two different Dropbox clients will both be looking at files that may have been changed by the other Dropbox client. For example, if I work on Mac all day and make 100 changes to files, then load up Windows 10, that Dropbox application would see a whole bunch of changes that it didn't make.
Has anyone tried anything like this? Would it work? I was hoping to get some insight to avoid wasting a ton of time. Thanks!!
EDIT - Don't try it! Unless you are willing to turn off Spotlight (mac Search functionality).. When you set up a FAT32 drive with a Mac as a permanent volume and it starts to index it for Spotlight, it adds metadata to "hidden" files which have the same name as the regular files but are formated with a ._ at the beginning (called "dot underscore files" if you want to learn more). I put "hidden" in quotes because while they are hidden files on your Mac, Dropbox picks them up and they become very visible files for everyone else. One of my shared folders was shared with a client, and I accidentally added extra, annoying files with ._ at the beginning of their name to tens of thousands of files! There is an easy fix:
- Back up your files (they should be backed up to Dropbox already, but you can never be too careful)
- Unlink Dropbox from your computer
- Delete the Dropbox folder including all of its content. You don't have to do this if it's an external drive and you want to keep the data on there for some reason, but never, ever link this folder to Dropbox again, unless you want the same headache.
- Install Dropbox again from scratch - but this time set the file location on your Mac's HD (or any other Apple/HFS formatted hard drive). Don't use selective Sync - let all of the files download. This might take a long time...
- Once Dropbox is up to date, open Terminal, navigate to your new Dropbox folder, and type the following:
find . -name '._*' -exec rm -v {} \;
This will delete every ._ file in the folder, including any subfolders. For me it was hundreds of thousands of files in thousands of folders! The -v lets you see status as it works.