Perhaps add $RECYCLE.BIN for Windows as well as .TemporaryItems for OS X.
How about using this in the Windows User root folder to sync all userdata:
//include all this !AppData !Contacts !Desktop !Documents !Downloads !Favorites !Music !Pictures !Videos
//ignore all the rest *
can the .stignore file handle windows environment variables like %USERNAME% ?
No. Mainly because the developers and contributors try to make the code as cross-platform as possible.
Well, that, and Iāve never heard anyone ask for variable interpolation in that file.
There is always a first time
Anyway, I understand the argument against variables, though, it would make it generic within one environment, e. g.
c:\users\%USERNAME%\something
would work for all users in a windows environment and make the admins life easier.
Except the ignore patterns are relative to the synced folderās root anywayā¦
I want to sync only .jpg files inside sub folder and ignore all other folders.
Iām syncing DCIM/ folder to my PC:
Camera/
Screenshots/
SomeFolder/
And I want to sync only Camera images without large .mp4 files to other mobile phone. So this .stignore should work:
*.mp4
!/Camera/
*
It synced right files, but isās reporting that all other files are out of sync?
Make sure that on both sides youāve the same .stignore and if that is OK, then a restart of one or both of the sides could resolve it.
Iāve just tried to have #include ~/.stignore
in my various .stignores
, in order to add the defaults above. This seems to work, as far as I can tell. So while there is no variable substitution, tilde expansion is available.
Are you sure this works correctly? According to another thread, that should not work:
Iām confused nowā¦
- Iāve double-checked, and the tilde effectively is not expanded.
- When looking at the source code, I see tests that verify that error messages are printed when the
#include
directives are invalid (e.g., testInvalidPatterns). - None of these errors shows up in my logs. This made me believe in the first place that tilde expansion worked.
Does anybody have more information about this? Would it make sense to file a bug for the missing error message?
Yes, please do, Iāve thought about it and forgotten it several times already.
The problem is that weāre specifically suppressing āfile not foundā, as we donāt want to log an error when trying to load a .stignore
when there is none. But that also means we suppress a āfile not foundā when parsing #include
s.
We can of course just check first if it exists, and if it does we actually do print whatever error we do run into when processing it. In the rare race condition where the user manages to delete the .stignore
file between that check and the open, theyāll get the error and itās no big dealā¦
Reported as #2309.
Hello,
this is a great help!
Iāve compiled a list from my own experiences (and from this forum). Maybe Cyphase wants to update his great first post with some more exclusions.
Please note: Since Iām not using BTSync anymore, those are still unique in Cyphaseās postā¦
//---Mac-specific---//
.DS_Store
.DocumentRevisions-V100
.Spotlight-V100
.TemporaryItems
.Trashes
.fseventsd
.localized
//temp file while syncing with (rather from) iCloud
.iCloud*
//Mac OS Metadata on Windows or Linux filesystems
._*
//---Windows-Specific---//
desktop.ini
Thumbs.db
$RECYCLE.BIN
//---Linux-specific---//
.Trash-*
//---QNAP-specific---//
.@__thumb
.AppleDB
//---Synology-specific---//
@eaDir
//---Application-specific---//
//-Syncthing
.stignore
.stfolder
//-vi(m)
*.*.swp
//-Dropbox
.dropbox
.dropbox.attr
//-Microsoft Office
~*
//-KDE
.directory
//-Parallels Desktop on Mac
.parallels-vm-directory
Hi @maelcum
Not sure why you are listing .stignore
and .stfolder
, they donāt sync.
I like to sync the ~MicrosoftOffice
lock files to reduce the chance of conflicts. If it is on a node when I try to open it I know there is a good chance I am about to create a conflict.
@Cyphase, since the thread is back up the top it might be worth updating your original post.
I donāt think it is worth ignoring the *.part
or *.crdownload
any more because we should be able to pull some of the blocks from them once the move/rename happens. Probably the same thing for .iCloud*
.
Perhaps one one of the core developers could correct me if I am wrong.
Hey Kluppy,
> Not sure why you are listing .stignore and .stfolder, they donāt sync.
yep, I know. The ignore list is the file Iād consult if in doubt what should sync. the .stignore and .stfolder are there as a reminder for me. Just that.
Thanks for the ping @kluppy, and to everyone else who has commented with suggestions. Iām too tired to do an update at the moment , but Iāll do one the next chance I get. Iām glad to see this post has gotten so many views and comments in the time that Iāve been inactive.
Maybe a wiki page would be useful, so that everyone can edit it?
My updated .stglobal, thanks to wweichs great hint (thanks!!) here:
//---Mac-specific---//
(?d).DS_Store
.DocumentRevisions-V100
.Spotlight-V100
.TemporaryItems
.Trashes
.fseventsd
(?d).localized
.iCloud
//Mac OS Metadata on Windows or Linux filesystems
(?d)._*
//---Windows-Specific---//
(?d)desktop.ini
(?d)Thumbs.db
(?d)$RECYCLE.BIN
//---Linux-specific---//
.Trash-*
//---QNAP-specific---//
(?d).@__thumb
(?d).AppleDB
//---Synology-specific---//
(?d)@eaDir
//---Application-specific---//
//-Syncthing
(?d).stignore
(?d).stfolder
//-vi(m)
(?d)*.*.swp
//-Dropbox
.dropbox
.dropbox.attr
//-Microsoft Office
(?d)~*
//-KDE
.directory
//---OTHER---//
Microsoft-Benutzerdaten
Notizbuch von Wolf.url
Outlook-Dateien
RDC Connections
.parallels-vm-directory
Default.rdp
vim
swap files are, in order of creation: .file.swp
, .file.swo
, .file.swn
.
The pattern for these is therefore:
// vim swap files
.*.sw[a-p] # vim uses 'o' then, 'n'... back to 'a'.