Need to see if your shared folder is taking up space on your dropbox 👨💻? Find out how to check here.
sync
356 TopicsKey Command/Shortcut to "Copy Dropbox Link" from Mac Finder.
I copy download links all day from the Mac Finder. It would be great to assign a key command so that you can highlight a file in your Dropbox via Mac Finder, and press a key command to copy the link instead of right clicking.Solved18KViews41likes67CommentsRequest: All files available offline by default
Moving the Mac to the new File Provider is great - very happy this is finally happening and support on the new M1 is much better. Kudos! Feature request: Really miss the feature to have Dropbox default to making all files downloaded and available for offline open/save. I will always, 100% of the time, want Dropbox to keep all my selected-to-sync files to also be downloaded and available for offline use. I know you can right-click to request offline availability, but this creates a bit of an unclear situation as you can't see by looking at a file in Finder whether it is supposed to be offline available or not. I want this to just be the way Dropbox works. Since there is the option to do this on a per file / folder basis using right-click, seems likely possible for Dropbox to make this effectively on-by-default for every file, with the user doing the gesture.Solved30KViews20likes90CommentsWhy is my download speed slow?
Hi, I don't understand why I'm having such a big problem downloading a movie from my Dropbox file onto my MacbookPro laptop. The file is only 1.2GB, I'm connected to my router with an ethernet cable, with a fibre-optic connection of 50/50Mbps uncapped and unthrottled. I've tried many times already, but the download is either ridiculously slow or stops altogether. I'm on Dropbox Pro, I have plenty space on my laptop hard drive, and I'm not doing anything else on the laptop at the same time. Am i doing this incorrectly or what? Help help please!Solved96KViews17likes23Comments"Smart" sync keeps downloading Online Only Files
I am growing increasingly frustrated with this so called "smart sync" feature Dropbox has recently introduced (or rather forced upon me). I have a number of files I've brought over to Dropbox using the finder on my Mac, that I have then marked as online only, in hopes that it would upload the files and then remove them from my local storage, which is limited. However Dropbox keeps randomly re-downloading the files to my system even after telling it that I want the files to be online only. This feature is supposed to "save hard disk space", which it does seem to do temporarily before it just starts downoading things again. It seems as though the only safe way to keep files from my drive is the old fashioned selective sync from preferences, but this is a backward way of working, especially when I want to have the folder show up on my local drive so I can bring files into it, but I may want those files to only live online. Has anyone found a solution to this abnormal behaviour (that, once again I might add, was forced on us as justification to increase the price of the paid service)?19KViews15likes77CommentsUpload to cloud directly from a url?
The ability to drop a file directly from a public file server to dropbox cloud storage folder. This would eliminate the need to download the file locally and then upload to sync the file. This would also help users with slow upload speeds or bandwidth caps.23KViews9likes6CommentsAdobe not downloading online only files from projects
Hi All, after updating to MacOS 12.3 I have not been able to open project files (Premiere/After Effects) without errors of not finding files that are in dropbox as 'online only'. Prior to the Mac update all files would auto download to be on my machine locally. I know there's an issue with full support for OS 12.3... any updates or solutions folks have found? thanksSolved24KViews8likes102CommentsSyncing dropbox files on Android - third party apps?
Hi everyone, As you may know, Dropbox doesn't sync files on Android any more as of last year or so (see this, for example). They used to be in sdcard>Android>data>com.dropbox.android>files, but the new "available offline" option stores them in the cache of the Db app, which other apps cannot access (you wouldn't be able to locate them with Files, for example), to ensure their safety, I would guess. The only way to use these files on your device apart from through the Db app is to "export" them after they were made "available offline" (so basically to properly download them locally), and it is thus impossible to do what Dropbox is meant to do in the first place : read and write synced files. I personally would like to edit note files on my computer and my phone and to get them synced by Db, but there seems to be no way to reach and edit locally stored (note) files with my note-taking app. The only workaround I found to this problem is using third party app that syncs files with your Dropbox repository, such as Dropsync or FolderSync, which were explicitly meant for that : "New files in your cloud account are automatically downloaded onto your device. [...] This is how Dropbox works on computers but not on Android. Two-way automatic synchronization should be an essential function of the official app. For whatever reason, it is not the case. Dropsync is here to fill the gap." [Dropsync app description] But then I am not too keen on adding more complexity to my workflow, increase the likeliness of some incompatibility or other "technical issues" to emerge in the future and, moreover, to potentially put my professional and personal data into more covetous digital hands than they already are in (free apps that manipulate my data? I sense what the product might be)... So my questions are : has anyone in here ever tried these solutions and did it work as planned? Any (unusual) worries to have regarding privacy with these solutions? And above all (@support people?), is there any way to circumvent the issue without these? Cheers15KViews8likes8CommentsWhy can't I download files and folders from Dropbox to my computer?
I am new! this system as presently experienced is worthless ---so it can't be right? Can't download any folder or file unless through email 1)don't you have simple step by step instructions to download entire folder or pic without going through email 2)once email pic is received, there is no way to down load it --only drag to desktop giving an unacceptable file of 160kb per pic where do i find instructions?Solved110KViews5likes46CommentsHow to make Dropbox ignore node_modules folder with symbolic links (aliases)
PROBLEM Dropbox does not currently provide an ignore file/folder feature that enables a locally-unique instance to exist on each machine. One important use of this is the “node_moduels" folder used for node javascript development. The node_modules folder sees thousands of file changes during the development cycle. If this folder is allowed to sync, the important files you need (outside of it), are so far down in the sync queue that you never have the important files when you need them on your other systems. SOLUTION A better way to sync projects with Dropbox while ignoring the node_modules folder is to use a “properly” formed symlink (alias). At this time npm and yarn support a property formed symlink. HOWEVER, IT IS CRITICAL THAT THE LINK (ALIAS) AND TARGET HAVE THE SAME NAME! From shell prompt (terminal): cd YOUR_PROJECT_NAME mkdir -p ~/Downloads/node_modules_for_YOUR_PROJECT_NAME mv node_modules ~/Downloads/node_modules_for_YOUR_PROJECT_NAME ln -s ~/Downloads/node_modules_for_YOUR_PROJECT_NAME/node_modules Now create the same target node_moduels folder on each of your other systems **AFTER** Dropbox syncs the ENTIRE project direcotry. The old node_modules folder should be removed and the symlink (alias) added before running these steps. cd YOUR_PROJECT_NAME mkdir -p ~/Downloads/node_modules_for_YOUR_PROJECT_NAME/node_modules yarn install SUCCESS Dropbox WILL sync the symlink/alias file itself, but NOT the contents it points to. This seems to work well for file syncing across several of your own development systems, and then use git to push to the repo for others on the team. CAVEAT The tiny symlink (alias) file itself IS sync’d on all systems, but will point to a non-existent / empty folder on the other systems. This is most applicable for a single user, but can also be useful for teams if an individual variant of the ignored data is appropriate, such as for node_moduels. Hope this helps. 🙂 ..sebastianSolved21KViews5likes19Comments