Page 1 of 1

Root Folder.

Posted: 30 Sep 2013, 08:27
by tfonias74
Hello,

Is it possible to redirect the renamed file to a root folder instead of the full path X:\... Whenever I try it i always creates folder inside the one I am currently at.

Thanks in advance!

Re: Root Folder.

Posted: 30 Sep 2013, 08:59
by rednoah
I don't know what you mean. The format can be relative and is resolved again the original file. Otherwise you can use absolute path.

Let's say this is what your format evaluates to:
Test.avi => Move to ./Test.avi
Series/Test.avi => Move to ./Series/Test.avi
../Test.avi => Move to ../Test.avi (../ means one folder level up)

There is no path that can't be defined via the format.

EDIT: if you're using relative paths like ../ there may be a bug with the old release, so you could try the latest revision from head.

Re: Root Folder.

Posted: 30 Sep 2013, 10:36
by tfonias74
Whenever I try "./" or "../" I get this..
FB.jpg
!
When I use "/" I get a folder inside the current location..

What I need is to send it to the (X):\XXX\XXX\xxx.avi or (Y):\XXX\XXX\xxx.avi (depending on the drive that I am currently working.

Re: Root Folder.

Posted: 30 Sep 2013, 10:43
by tfonias74
FileBot 3.62 (r1728) / Java(TM) SE Runtime Environment 1.7.0_25

Re: Root Folder.

Posted: 30 Sep 2013, 12:25
by rednoah
Is that the latest revision? Try the latest one. I think I fixed that 2 weeks ago.

Re: Root Folder.

Posted: 30 Sep 2013, 13:12
by tfonias74
I downloaded the jar file a couple of days ago.. should I get something else also?

Re: Root Folder.

Posted: 30 Sep 2013, 18:25
by rednoah
Tested with r1756 and works for me.


How about u just create an absolute path with the format?

Like this one from the samples:

Code: Select all

{file.path[0]}:/Movies/{n} ({y})/{n} ({y}){" CD$pi"}

Re: Root Folder.

Posted: 01 Oct 2013, 08:34
by tfonias74
That worked, thanks!!!