Moving Files to Root of Move folder instead of Subfolder with Movie name

Running FileBot from the console, Groovy scripting, shell scripts, etc
Post Reply
FileBotIsGreat
Posts: 2
Joined: 12 Nov 2016, 01:51

Moving Files to Root of Move folder instead of Subfolder with Movie name

Post by FileBotIsGreat »

The items that need to be renamed will be in a folder on a local drive, either called Movies or TV. The TV does exactly what I need it to. But for Movies when it renames and moves it, it puts them in the X:\Movies folder but also creates a sub folder named after the movie.

So this is what I want
Movies
-Ghost Busters (2016).mp4
-Thor (2015).mp4

But this is what it does
Movies
-Ghost Busters (2016)
--Ghost Busters (2016).mp4
-Thor (2015)
--Thor (2015).mp4

So just want to move the renamed file and not a folder with the name as well. Is that possible? The source files are in subfolders named after the movie, so I just want to pull the movie only and dump all the movie files into the root of my Movies folder.

Code: Select all

filebot -script fn:amc --output "X:\Movies" --action move -non-strict "C:\Downloads\Movies" --log-file amc.log --def excludeList=amc.txt
User avatar
rednoah
The Source
Posts: 23953
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Moving Files to Root of Move folder instead of Subfolder with Movie name

Post by rednoah »

Pass in a custom movieFormat:

Code: Select all

Movies/{plex.name}
:idea: Please read the FAQ and How to Request Help.
FileBotIsGreat
Posts: 2
Joined: 12 Nov 2016, 01:51

Re: Moving Files to Root of Move folder instead of Subfolder with Movie name

Post by FileBotIsGreat »

Thank you, I read up on that and some other options and got what I needed.
Post Reply