Need help custom renaming files without database use
Posted: 12 Apr 2019, 02:53
Sometimes I run into problems where files have no database matches. In these scenarios I have to manually rename them. I know that I can press 'f2' to get the renaming tool. I am trying to rename them using the regular expressions, but I am having trouble. I want to be able to just have clean files without groups, or other unnecessary tags.
I have several files like:
I want to get the filename formatting to look like
This is what I have tried:
How can I basically take the filename and replace/move the ordering?
I want to be able to
and just have clean files names.
Ex: movies/movie title/ movie title (year) or show/show title/ show title - s00e00 - episode title
I have several files like:
Code: Select all
[Forge] Freezing - OVA 01 [Hi10P] [720p] [A5621CF1]
Code: Select all
Freezing - S00E01 - OVA
Code: Select all
{n.stripReleaseInfo().space(' ').replaceAll('OVA')} - S00E{i.pad(2)} - OVA
I want to be able to
- delete everything inside '[brackets]' or '(paranthesis)' which usually represents groups/serials/etc
and just have clean files names.
Ex: movies/movie title/ movie title (year) or show/show title/ show title - s00e00 - episode title