I'm trying to use FreeFileSync on a virtual drive created by Cryptomator, which uses https://github.com/dokan-dev/dokany. For some reason, FreeFileSync starts creating files named:
Del.sync.ffs_lock
Del.Del.sync.ffs_lock
Del.Del.Del.sync.ffs_lock
...
On the FreeFileSync side, it would be nice if this chain of files could be recognized and stopped. Either just don't create more files (I suppose they're "created" by "moving" an existing file, but that somehow fails on this filesystem? In that case don't move, but immediately delete if it's already a "Del.*" file), or adopt a different naming scheme, e.g.
Del.sync.ffs_lock
Del.1.sync.ffs_lock
Del.2.sync.ffs_lock
Del.3.sync.ffs_lock
Thanks!