I've got my Amazon drive mounted using Rclone (Ubuntu 16.04) and I'm trying to perform some filebot move operations on it. It reads everything fine and manages to match correctly, but the script only manages to move about 5 files until I get this:
Code: Select all
[MOVE] Failure: java.nio.file.FileSystemException: /ACD/Plex/Films/Sully.2016.1080p.BluRay.X264.AC3-JYK.mkv -> /ACD/Plex/Films/Sully.(2016)/Sully.2016.1080p.BluRay.X264.AC3-JYK.mkv: Input/output error
Processed 0 files
/ACD/Plex/Films/Sully.2016.1080p.BluRay.X264.AC3-JYK.mkv -> /ACD/Plex/Films/Sully.(2016)/Sully.2016.1080p.BluRay.X264.AC3-JYK.mkv: Input/output error
java.nio.file.FileSystemException: /ACD/Plex/Films/Sully.2016.1080p.BluRay.X264.AC3-JYK.mkv -> /ACD/Plex/Films/Sully.(2016)/Sully.2016.1080p.BluRay.X264.AC3-JYK.mkv: Input/output error
at net.filebot.util.FileUtilities.moveRename(FileUtilities.java:85)
at net.filebot.StandardRenameAction$1.rename(StandardRenameAction.java:22)
at net.filebot.cli.CmdlineOperations.renameAll(CmdlineOperations.java:619)
at net.filebot.cli.CmdlineOperations.renameMovie(CmdlineOperations.java:493)
at net.filebot.cli.CmdlineOperations.rename(CmdlineOperations.java:92)
at net.filebot.cli.ArgumentProcessor.runCommand(ArgumentProcessor.java:83)
at net.filebot.cli.ArgumentProcessor.run(ArgumentProcessor.java:26)
at net.filebot.Main.main(Main.java:115)
Failure (°_°)
Is there a way to make the java calls more 'patient' as to accommodate for the slowness?
Command used, but happens with any --action move command:
Code: Select all
filebot -rename --db TheMovieDB --action move --format "{n.space('.').upperInitial()}.({y})/{fn.space('.').upperInitial()}" -non-strict --output /ACD/Plex/Films -no-xattr --log-file test.log .
PJ