Exclude a folder

Support for Synology NAS, QNAP NAS and other Embedded Linux systems
Post Reply
Niko
Posts: 1
Joined: 04 May 2017, 09:04

Exclude a folder

Post by Niko »

Hello !
first of all, I wanted to say thank you for this powerfull tool and thank you for reading me.

I have a folder on my synology that is synchronized with my seedbox.
on this folder I have a tmp folder that is used to receive the files i'm downloading
some times, it can take 1 hour to download the file and then if I'm running the script during this hour, all the files in the "tmp" folder, could be misunderstanded and treated whereas it's not finished. Then it interrupt the process and I can't run the filebot script during this process
-> I can't make an automation, I have to run the script manually to control it.

here is the script I'm running :

Code: Select all

sudo filebot -script fn:amc --output "/volume1/video/Medias" --action move -non-strict --conflict override --def deleteAfterExtract=y --def clean=y --def unsorted=y "/volume1/video/sync/" --log-file amc.log --def excludeList=amc.txt
Is there a way to exclude this folder from the scan ?
User avatar
rednoah
The Source
Posts: 22923
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Exclude a folder

Post by rednoah »

Does --def ignore not work?

Ignore all file paths that contain "tmp" anywhere in the path:

Code: Select all

--def ignore="tmp"
:idea: Please read the FAQ and How to Request Help.
Post Reply