Ability to skip files already processed (not AMC)

Running FileBot from the console, Groovy scripting, shell scripts, etc
Post Reply
nathan323
Posts: 3
Joined: 20 Apr 2017, 05:38

Ability to skip files already processed (not AMC)

Post by nathan323 »

Hi all. Great program :)

I've got a custom renaming/tagging batch file that uses FileBot command line arguments. I want it to skip files already processed (in the same way I noticed the AMC script has "--def excludeList" option).

Does FileBot have this option in the CLI?

If it doesn't, I was thinking I could do it elsewhere in the batch file, but passing the filename of each processed file to a text document sounds tricky and complicated in cmd.exe..
User avatar
rednoah
The Source
Posts: 22998
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Ability to skip files already processed (not AMC)

Post by rednoah »

1.
--def excludeList a special option for the amc script. There is no equivalent for simple -rename calls or other scripts.


2.
find -exec would make it easy to select files created or modified after a certain point in time. There might be an easy solution with PowerShell or Bash. You can also write your own Groovy script.

:!: If you try this with CMD you will fail and it will take your sanity.
:idea: Please read the FAQ and How to Request Help.
nathan323
Posts: 3
Joined: 20 Apr 2017, 05:38

Re: Ability to skip files already processed (not AMC)

Post by nathan323 »

Haha, yeah I hear ya.

Just to be clear, find -exec is only avaible in AMC also? Couldnt find reference to it anywhere.
User avatar
rednoah
The Source
Posts: 22998
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Ability to skip files already processed (not AMC)

Post by rednoah »

find is a very useful standard Unix command: viewtopic.php?f=4&t=4788
:idea: Please read the FAQ and How to Request Help.
nathan323
Posts: 3
Joined: 20 Apr 2017, 05:38

Re: Ability to skip files already processed (not AMC)

Post by nathan323 »

Cool, thanks. Got some learning to do :)
Post Reply