Filebot rename and move giving java error

All your suggestions, requests and ideas for future development
Post Reply
User avatar
rednoah
The Source
Posts: 23930
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Filebot rename and move giving java error

Post 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.
:idea: Please read the FAQ and How to Request Help.
Post Reply