I have found this thread. The answer suggested there works on my Mac, but not my Windows machine.
The last comment on the accepted answer mentions that "The dropbox host.db file doesn't exist anymore in latest version." so it seems the solution doesn't work anymore.
I've also found this official guide, but the suggested code gives me an error
import json
from pprint import pprint
with open('%LOCALAPPDATA%\Dropbox\info.json') as data_file:
data = json.load(data_file)
pprint(data)
Error: IOError: [Errno 2] No such file or directory: '%LOCALAPPDATA%\\Dropbox\\info.json'
An additional complication is that I have a personal and professional dropbox account on each machine. The personal folder is called 'Dropbox (Personal)'.
Any pointers on how to find this folder path on any machine where I've synced my Dropbox?