how can i exclude ?
- Posts: 2
- Joined: 16 Jul 2022
i have lots of file than start with this name "~$" like "~$hello.xlx" i dont know why they are created , any way, how can i exclude rsync from sync them ?
- Posts: 2
- Joined: 16 Jul 2022
i hope this help other. i have to add this line into filter:
*\~*
*\~*
- Posts: 2456
- Joined: 22 Aug 2012
Almost certainly, these files starting with ~$ are temporary MS-office "backup"-files of each file that was open in MS-Office at the time of running the FFS sync.
You can exclude these files via an Exclude Filter rule
*\~$*
This is a bit more robust than your
*\~*
as this last line would exclude every file starting with a tilde (~),
not just those starting with ~$ .
You can exclude these files via an Exclude Filter rule
*\~$*
This is a bit more robust than your
*\~*
as this last line would exclude every file starting with a tilde (~),
not just those starting with ~$ .