Page 1 of 1

Rename, create directory and move Movies

Posted: 03 Jun 2018, 08:11
by johanjsl
HI,

I'm new to filebot but I was wondering if there is a way ( for movies) to rename it, then create a directory with that name and move it to that directory.
example : "Mary.Shelley.2017.1080p.WEB-DL.DD5.1.H264-FGT.mkv" would be renamed to "Mary Shelley (2017).mkv" and then a directory Mary Shelley (2017) should be created and the MKV file would be copied to that directory.

Any suggestions ?

Johan

Re: rename, create directory and move mobies

Posted: 03 Jun 2018, 08:14
by rednoah
Yes, that is what FileBot does. Please read FAQ #1 and learn how format expressions work.

Let me know if anything is unclear.

Re: rename, create directory and move mobies

Posted: 03 Jun 2018, 08:56
by johanjsl
well, yes, that is filebot and that I understand, but I might have been unclear in my question : can I do it in one movement ?
Drag the file to the window, get it recognized and have filebot do all the rest, as the renamer did, before it stopped working.
I went through the FAQ#1 and format but I did not see a make directory , unless I misread.

Re: rename, create directory and move mobies

Posted: 03 Jun 2018, 10:41
by rednoah
Yes, files will be moved / renamed to the exact path specified by your custom format in one single operation, and FileBot will create the necessary file and folder structure as per your custom format. The final destination path (and any folders) are completely up to your custom format.


As a beginner, I'd start with an absolute {plex} format:

Code: Select all

X:/Media/{plex}
and as per that format, your files will be moved into a folder structure accordingly:

Code: Select all

X:/Media/Movies/Avatar (2009)/Avatar (2009).mp4
viewtopic.php?f=5&t=4116


This 30 second video tutorial shows you exactly how it works and where you have to click to open the Format Editor:
https://www.youtube.com/watch?v=RRq2_Pjyko8

Re: Rename, create directory and move Movies

Posted: 03 Jun 2018, 16:13
by kim
example : "Mary.Shelley.2017.1080p.WEB-DL.DD5.1.H264-FGT.mkv" would be renamed to "Mary Shelley (2017).mkv" and then a directory Mary Shelley (2017) should be created
Format:
{ny}/{ny}

you can tell Filebot to e.g. copy or move

DONE

Re: Rename, create directory and move Movies

Posted: 03 Jun 2018, 19:11
by rednoah
Note that this is a relative format:

Code: Select all

{ny}/{ny}
And so files will be moved relatively to where they are, which can be quite confusing to new users that are not familiar with the concept of relative paths.


I recommend using absolute formats, so you know exactly what you get:

Code: Select all

X:/Movies/{ny}/{ny}

Re: Rename, create directory and move Movies

Posted: 04 Jun 2018, 09:48
by johanjsl
Hi All,

thank you for the reply, I will try this as soon as possible.
again, thank you

regards,

Johan