I'm using Dropbox with some project and one of my directories has subdirectory it's called ~/Dropbox/stuff/data, how do I exclude and/or ignore it without selective sync?
Asked
Active
Viewed 1,540 times
1 Answers
0
Based on this announcement, Dropbox allows user to ignore specific files. Based on your os, you can ignore files using one of the following commands:
Mac:
xattr -w com.dropbox.ignored 1 /Users/yourname/Dropbox\ \(Personal\)/YourFileName.pdf
Windows:
Set-Content -Path 'C:\Users\yourname\Dropbox(Personal)\YourFileName.pdf' -Stream com.dropbox.ignored -Value 1
Linux:
attr -s com.dropbox.ignored -V 1 /Users/yourname/Dropbox\ \(Personal\)/YourFileName.pdf