We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.
I have a folder I would like to share but it gives me an error saying I can't share because there is a shared folder below. How do I find this folder to move it? There are hundreds of folders and no ...
PersonWithHat
6 years agoNew member | Level 2
Use the following bash command inside your dropbox root folder to list all shared folders:
grep -r -i --include="*.dropbox" shared .
Dropbox creates hidden Files in folders called ".dropbox". (At least on Linux it does) In my short inverstigation I found that the ".dropbox" contains the word "shared" if it is a shared folder. So you can search for all ".dropbox" files which contain "shared".
Please test for yourself whether that acutally catches all the shared folders.