Page 1 of 1

Need assistance with renaming folder and subfolders

Posted: 23 May 2019, 15:51
by hstorey219
Hi There,
So I have a folder on W: that I just want Filebot to search for new TV Shows and just rename them for consistency. I included a script that will let Sonarr know that I added these files too.
I can't find a good example how to to this :(
Here is what I came up with,but it is saying can't copy to same folder

Code: Select all

filebot -script fn:amc --output "W:/" --action copy -non-strict "W:/" --log-file amc.log --def excludeList=amc.txt --def "exec=filebot -script /D:/Commandfiles/Update_Sonarr_Radarr.groovy --def type={type} id={id}"

Re: Need assistance with renaming folder and subfolders

Posted: 23 May 2019, 16:00
by rednoah
:idea: Best to have separate input / output folders.


1.
Move W:/* to W:/INPUT and create an empty folder W:/OUTPUT


2.
Copy the amc script example and modify it for your input / output folder:

Code: Select all

filebot -script fn:amc --output "W:/OUTPUT" --action duplicate -non-strict "W:/INPUT" --log-file amc.log --def excludeList=amc.txt

Re: Need assistance with renaming folder and subfolders

Posted: 23 May 2019, 16:13
by hstorey219
Thank you :)