Artwork Problem

Running FileBot from the console, Groovy scripting, shell scripts, etc
Post Reply
Luke
Posts: 18
Joined: 24 Feb 2014, 09:36

Artwork Problem

Post by Luke »

I have trouble picking up artwork for this inc particular movie

Code: Select all

filebot -script fn:artwork.tmdb  "G:\Media\Movies\The LEGO Movie (2014)\test" " --log-file artwork.log"

pause
Error:
Failure (°_°)
FileNotFoundException: G:\Media\Movies\The
java.io.FileNotFoundException: G:\Media\Movies\The
at Script2$_run_closure19.doCall(Script2.groovy:32)
at Script2$_run_closure19.doCall(Script2.groovy)
at Script2$_run_closure22_closure96.doCall(Script2.groovy:35)
at Script2$_run_closure22.doCall(Script2.groovy:35)
at Script3.run(Script3.groovy:16)
at net.sourceforge.filebot.cli.ScriptShell.evaluate(ScriptShell.java:91)
at net.sourceforge.filebot.cli.ScriptShell.runScript(ScriptShell.java:85)
at net.sourceforge.filebot.cli.ArgumentProcessor.process(ArgumentProcessor.java:123)
at net.sourceforge.filebot.Main.main(Main.java:192)
Failure (°_°)
Luke
Posts: 18
Joined: 24 Feb 2014, 09:36

Re: Artwork Problem

Post by Luke »

Managed to fix it by taking out the " --log-file artwork.log" why would that be
User avatar
rednoah
The Source
Posts: 22999
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Artwork Problem

Post by rednoah »

The command you posted doesn't match the error. The error you posted is from when you tried without using "..."

And this is completely wrong, it won't be using that log file, which explains the above, cause you probably copied the error from there:

Code: Select all

" --log-file artwork.log"
Why "..." for options? That's wrong. But passing in a SPACE? What's the point of that?

This is how you pass in cmdline options, as 2 arguments separated by space:

Code: Select all

--log-file artwork.log
:idea: Please read the FAQ and How to Request Help.
Post Reply