Johannes wrote:A solution for both issues would be simple filters on file/folder names (exclude/include *.dtBase2, peaks/*, analysis/* export/* ect).
Your wish is mine, too, as I made a similar request just a few days ago.
Any other suggestions?
Before that happens, QR2's command line tool "qrecall" might provide a workaround. The following line should work to exclude all "peaks/*" under the /project_folder tree from QR2 backup:
find /project_folder -type d -name "peaks" -print0 | xargs -0 qrecall captureprefs exclude
Similarly, the following line should get "*.dtBase2" excluded:
find /project_folder -type f -name "*.dtBase2" -print0 | xargs -0 qrecall captureprefs exclude
Put them in a bash script and run them as often as necessary. You can use Hazel, Keyboard Maestro or the like to automate the task. Even the good old crontab can do the job.