Need to see if your shared folder is taking up space on your dropbox 👨💻? Find out how to check here.
Forum Discussion
rjclardy
6 years agoHelpful | Level 6
The ignore folder feature is not working.
I can confirm that I'm seeing the same behavior that cabreu described: ignored folders don't get synced BUT the dropbox app continues to monitor them anyway and performs some level of processing when...
teadrinker
4 years agoNew member | Level 2
I'm having an issue on windows 10, files can be ignored, but not folders.
I tried running as admin, both relative and full paths, and with and without trailing backslash
For folders, I always get this error:
Set-Content : Could not open the alternate data stream 'com.dropbox.ignored'
+ Set-Content -Path Library -Stream com.dropbox.ignored -Value 1
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Set-Content], FileNotFoundException
+ FullyQualifiedErrorId : System.IO.FileNotFoundException,Microsoft.PowerShell.Commands.SetContentCommand
Dragorion
3 years agoHelpful | Level 5
I had this issue for folders with the 'R' attribute (which they have, for example, when they were configured to show a custom icon).
teadrinker wrote:I'm having an issue on windows 10, files can be ignored, but not folders.
I tried running as admin, both relative and full paths, and with and without trailing backslash
For folders, I always get this error:
Set-Content : Could not open the alternate data stream 'com.dropbox.ignored'
+ Set-Content -Path Library -Stream com.dropbox.ignored -Value 1
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Set-Content], FileNotFoundException
+ FullyQualifiedErrorId : System.IO.FileNotFoundException,Microsoft.PowerShell.Commands.SetContentCommand
The solution is to 1. unset 'R', 2. ignore directory, and 3. reset 'R'.
I created a .bat file for execution in such folders that I want to be ignored by Dropbox:
attrib -r "%cd%"
powershell -command "Set-Content -Path \"%cd%\" -Stream com.dropbox.ignored -Value 1"
attrib +r "%cd%"
pauseAnd to unignore:
attrib -r "%cd%"
powershell -command "Clear-Content -Path \"%cd%\" -Stream com.dropbox.ignored"
attrib +r "%cd%"
pause
About Delete, edit, and organize
Solve issues with deleting, editing, and organizing files and folders in your Dropbox account with support from the Dropbox Community.
The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.
If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X, Facebook or Instagram.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!