Search found 13 matches

by HtRabbit
19 May 2022, 19:59
Forum: Windows
Topic: Clean folders
Replies: 1
Views: 927

Clean folders

i want to clean folder after the rename. what is the best way to do this.
i tried a preset but i clearly do not know what i am doing Image
by HtRabbit
19 May 2022, 18:34
Forum: Windows
Topic: rename posters and banners
Replies: 6
Views: 1680

Re: rename posters and banners

Thank-you for the help
i think i like the fetch best
by HtRabbit
19 May 2022, 17:44
Forum: Windows
Topic: rename posters and banners
Replies: 6
Views: 1680

Re: rename posters and banners

rednoah wrote: 19 May 2022, 17:38 Please use https://snipboard.io/ or https://imgur.com/ for image hosting, or post images via our Discord channel.
Oh , Sorry.
do the images not showup?

I have updates the links.
by HtRabbit
19 May 2022, 17:28
Forum: Windows
Topic: rename posters and banners
Replies: 6
Views: 1680

Re: rename posters and banners

so i basically just grab a folder and drop it in the "original files" section
Image

my raw directory looks something like this. Image

after processing though i have no banners or posters Image
by HtRabbit
19 May 2022, 02:05
Forum: Windows
Topic: rename posters and banners
Replies: 6
Views: 1680

rename posters and banners

I am trying to rename posters and banners in the main folder with the movie but it appears i am not smarter than a 5th grader here is what i have for the format in the gui T:/new/{fn.contains('3D') || fn.contains('3-D')|| fn.contains('3d') ? "3D\\":"Movies\\"}{def n0 = any{collec...
by HtRabbit
08 May 2014, 14:18
Forum: Help and Support
Topic: FileBot GUI windows 7
Replies: 6
Views: 3647

Re: FileBot GUI windows 7

so what i got working is t:\new\Movies\{def n0 = any{collection}{n}.sortName().charAt(0); n0.isDigit() ? "0-9\\" : "$n0\\"}{"$collection\\"}{n} [{y}]\{n} [{y}] [ID IMDB tt{imdb.imdbid}]{fn.contains('trl') || fn.contains('Trailer')|| fn.contains('trailer')|| fn.contains(...
by HtRabbit
08 May 2014, 02:25
Forum: Help and Support
Topic: FileBot GUI windows 7
Replies: 6
Views: 3647

Re: FileBot GUI windows 7

I feel so close, problem is that on a collection i get T:\new\Movies\M\The Matrix Collection\A\The Animatrix [2003] instead of T:\new\Movies\M\The Matrix Collection\The Animatrix [2003] what i now have is t:\new\Movies\{c0="$collection".sortName().charAt(0); c0.isDigit() ? '0-9\\' : "...
by HtRabbit
07 May 2014, 22:13
Forum: Help and Support
Topic: FileBot GUI windows 7
Replies: 6
Views: 3647

Re: FileBot GUI windows 7

It would seem i can get one or the other, but not both the code below will remove the 'the' and put 'the animartix' into T:\new\movies\m\the matrix collection t:\new\Movies\{def c1={c0=collection.sortName().charAt(0); c0.isDigit() ? '0-9\\' : "$c0\\"} n1={n0 = n.sortName().charAt(0); n0.is...
by HtRabbit
06 May 2014, 21:41
Forum: Help and Support
Topic: FileBot GUI windows 7
Replies: 6
Views: 3647

FileBot GUI windows 7

I have not been able to figure out a simple 'if' statment. I would like to use the {collections} for movies. i put my movies in to alpha folders and do not use the 'the' ie Her would be in t:/H/Her/her.mkv problem arises for collections where the movie name does not start with the same letter as the...
by HtRabbit
15 Apr 2014, 19:08
Forum: Help and Support
Topic: Creating folder structure from first letter in movie/tv
Replies: 10
Views: 10116

Re: Creating folder structure from first letter in movie/tv

1. All the code is standard Groovy code, and all the extra variables can be inspected by clicking (x)= button in the Format Editor window. 2. n =~ /^(?i)[a-z]/ means if there is any letter in the name then , since The 4400 contains a letter it'll use the charAt(0) code. I would do this: {n0 = n.sor...
by HtRabbit
14 Apr 2014, 19:12
Forum: Help and Support
Topic: Creating folder structure from first letter in movie/tv
Replies: 10
Views: 10116

Creating folder structure from first letter in movie/tv

I have been using the following code in the GUI to Create folder structure from first letter in movie/tv t:\new\TV\{n =~ /^(?i)[a-z]/ ? n.replaceFirst(/^(?i)(The|A)\s(.+)/, /$2, $1/).getAt(0) : '0-9'}\{n.replaceAll(/[(]/,"[").replaceAll(/[)]/,"]")}\Season {s}\{n.replaceAll(/[(]/,...
by HtRabbit
09 Apr 2014, 13:45
Forum: Help and Support
Topic: trailers and .nfo & .watched files
Replies: 3
Views: 3029

Re: trailers and .nfo & .watched files

1. Just don't drag them in, and they won't be renamed. You can use *.avi or some sort of filter to drag in multiple files from multiple folders. 2. You'll have to account for extra extensions in the format: {if (ext =~ /watched/) fn.match(/\.(avi|mkv)$/)} 1. but i do want them renamed so i end up w...
by HtRabbit
09 Apr 2014, 01:41
Forum: Help and Support
Topic: trailers and .nfo & .watched files
Replies: 3
Views: 3029

trailers and .nfo & .watched files

I am currently using the GUI v4.0 on windoze for my movies i use t:\new\Movies\{n =~ /^(?i)[a-z]/ ? n.replaceAll('The ','').getAt(0) : '0-9'}\{n} [{y}]\{n} [{y}] [ID IMDB tt{imdb.imdbid}]{fn.contains('trl') || fn.contains('trailer') ? '.'+'[Trailer-IMDB]':""}{" CD$pi"} if i have ...