Page 1 of 1

Re: Filebot rename and move giving java error

Posted: 06 May 2020, 06:41
by rednoah
It's clearly a file system issue unrelated FileBot specifically, so you might be able to make things work by configuring your custom file system driver:

Code: Select all

rclone: rclone v1.51.0 - os/arch: darwin/amd64 - go version: go1.13.7

Your --def excludeList=amc.txt is not readable / writable / otherwise corrupt / presented as corrupt by your custom file system driver:

Code: Select all

java.io.IOException: Operation not permitted
	at net.filebot.util.FileSet.append(Unknown Source)

Code: Select all

java.io.IOException: The system cannot find the file specified
        at net.filebot.util.FileSet.append(Unknown Source)

--output is generally expected to be a working file system, where everything is normal, can read, can write, can append, etc. In this case, your custom file system driver fails when writing to amc.txt, so you could work around the issue by putting amc.txt somewhere on the local file system where reading / writing files is assured.