Page 1 of 1
Bug with a series
Posted: 02 Jun 2014, 13:26
by THRobinson
Just installed ... no idea what version, can't find the help/about ... whatever is the most current download.
Anyways, new version installed, wiped out my old naming preferences so set those up again. First thing I needed renamed was the animated TV series for CLERKS.
Originally the files were named "Clerks [01]" so when I scraped TVDB all the matches on the right side were in red. Though maybe the issue, so did a quick rename to "Clerks S01E01" and the red was gone but still the same error.
IOException: The Parameter is Incorrect
I tried using default episode formats but still the same error. I tried the series ALIAS and DRACULA and works fine.
Something specific to CLERKS it seems is causing an issue but not sure what... long file name? though not all are long.
So, bug with clerks, and no help/about menu I guess would be a feature request.

Re: Bug with a series
Posted: 02 Jun 2014, 14:00
by rednoah
1.
Run filebot with console so you can see the full error trace, and send that.
2a.
filebot -version
2b.
Start => Programs and Features => FileBot => Version
Re: Bug with a series
Posted: 02 Jun 2014, 15:16
by THRobinson
Running 4.1...
Jun 02, 2014 11:12:44 AM net.filebot.ui.rename.RenameAction$RenameJob done
SEVERE: FileSystemException: C:\Users\Thomas\Downloads\Clerks--The Animated Seri
es\Clerks.Animated.01.05.avi -> C:\Users\Thomas\Downloads\Clerks--The Animated S
eries\Clerks - S01E05 - Dante & Randal & Jay & Silent Bob and a Bunch of New Cha
racters & Lando Take Part in a Whole Bunch of Movie Parodies Including But Not E
xclusive To, The Bad News Bears, The Last Starfighter, Indiana Jones and the Tem
ple of Doom, Plus a High School Reunion.avi: The filename, directory name, or vo
lume label syntax is incorrect.
java.util.concurrent.ExecutionException: java.nio.file.FileSystemException: C:\U
sers\Thomas\Downloads\Clerks--The Animated Series\Clerks.Animated.01.05.avi -> C
:\Users\Thomas\Downloads\Clerks--The Animated Series\Clerks - S01E05 - Dante & R
andal & Jay & Silent Bob and a Bunch of New Characters & Lando Take Part in a Wh
ole Bunch of Movie Parodies Including But Not Exclusive To, The Bad News Bears,
The Last Starfighter, Indiana Jones and the Temple of Doom, Plus a High School R
eunion.avi: The filename, directory name, or volume label syntax is incorrect.
at java.util.concurrent.FutureTask.report(Unknown Source)
at java.util.concurrent.FutureTask.get(Unknown Source)
at javax.swing.SwingWorker.get(Unknown Source)
at net.filebot.ui.rename.RenameAction$RenameJob.done(RenameAction.java:3
25)
at javax.swing.SwingWorker$5.run(Unknown Source)
at javax.swing.SwingWorker$DoSubmitAccumulativeRunnable.run(Unknown Sour
ce)
at sun.swing.AccumulativeRunnable.run(Unknown Source)
at javax.swing.SwingWorker$DoSubmitAccumulativeRunnable.actionPerformed(
Unknown Source)
at javax.swing.Timer.fireActionPerformed(Unknown Source)
at javax.swing.Timer$DoPostEvent.run(Unknown Source)
at java.awt.event.InvocationEvent.dispatch(Unknown Source)
at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
at java.awt.EventQueue.access$200(Unknown Source)
at java.awt.EventQueue$3.run(Unknown Source)
at java.awt.EventQueue$3.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$1.doIntersectionPrivilege(Unknown Sour
ce)
at java.awt.EventQueue.dispatchEvent(Unknown Source)
at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.run(Unknown Source)
Caused by: java.nio.file.FileSystemException: C:\Users\Thomas\Downloads\Clerks--
The Animated Series\Clerks.Animated.01.05.avi -> C:\Users\Thomas\Downloads\Clerk
s--The Animated Series\Clerks - S01E05 - Dante & Randal & Jay & Silent Bob and a
Bunch of New Characters & Lando Take Part in a Whole Bunch of Movie Parodies In
cluding But Not Exclusive To, The Bad News Bears, The Last Starfighter, Indiana
Jones and the Temple of Doom, Plus a High School Reunion.avi: The filename, dire
ctory name, or volume label syntax is incorrect.
at sun.nio.fs.WindowsException.translateToIOException(Unknown Source)
at sun.nio.fs.WindowsException.rethrowAsIOException(Unknown Source)
at sun.nio.fs.WindowsFileCopy.move(Unknown Source)
at sun.nio.fs.WindowsFileSystemProvider.move(Unknown Source)
at java.nio.file.Files.move(Unknown Source)
at net.filebot.util.FileUtilities.moveRename(FileUtilities.java:61)
at net.filebot.StandardRenameAction$1.rename(StandardRenameAction.java:1
4)
at net.filebot.ui.rename.RenameAction$RenameJob.doInBackground(RenameAct
ion.java:308)
at net.filebot.ui.rename.RenameAction$RenameJob.doInBackground(RenameAct
ion.java:278)
at javax.swing.SwingWorker$1.call(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at javax.swing.SwingWorker.run(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
Re: Bug with a series
Posted: 03 Jun 2014, 00:39
by rednoah
Your filesystem limits filenames to 255 characters:
http://msdn.microsoft.com/en-us/library ... spx#limits
Either don't use {t} in the format or do something like {t.take(200)} to deal with cases where {t} is extremely long.
Re: Bug with a series
Posted: 03 Jun 2014, 01:22
by THRobinson
Strange... I figured it would rename the rest, or like when there is a ; in the name it asks for validation, thought maybe the same for shrinking.
Re: Bug with a series
Posted: 03 Jun 2014, 05:24
by rednoah
200 char plus episode titles are extremely rare, and this issue specific to Windows anyway. On Mac / Linux there are no such limitations. Since there's an easy fix via the format, no need to pollute the code with Windows special cases.