Hi Mara:
I have 5 devices hooked up to Insync. I notice I too had quite a few of these insyncdl files lying around and never getting cleaned up.
- This appears to have started after a recent update (last 2-4 weeks)
- I not have much activity - perhaps 50 file operations per day (add/remove/rename/move). Most of these ops are renames or moves.
- A lot of the file changes are done via command line, while others are done via Dolphin
- All clients are Ubuntu 20.04 LTS
- This problem only has appeared on shared drives to date, but that may be because that’s where all the action is.
Is it safe to delete them all? Do you have suggestions to avoid these in the future?
# This finds 83 files, some weeks old
find ./ |grep -P '[^/]/\..*\.insyncdl$' |wc -l
# This removes the files, even those with spaces
while read -r _file; do
/bin/rm "${_file}";
done < <(find ./ |grep -P '[^/]/\..*\.insyncdl$');