Page 1 of 1

Make the cache path relative?

Posted: 26 Dec 2009 21:27
by TsunamiZ
Anyone know if there is a way to make the cache path relative? So that it's always looking for a custom folder within the program directory.

Re: Make the cache path relative?

Posted: 26 Dec 2009 21:34
by admin
You can state a path relative to app data path.

Re: Make the cache path relative?

Posted: 27 Dec 2009 00:51
by TsunamiZ
so i can just use

/cache

and it will know to look for it in the program's folder?

Re: Make the cache path relative?

Posted: 27 Dec 2009 10:36
by admin

Code: Select all

    * Thumbnails Cache Folder: Now it is fully portable, i.e. you can 
      define it in XY's portable path syntax, e.g.:
        Thumbs        : relative to app data path
        Thumbs\       : same as above (backslash is optional)
        ..\..\Thumbs  : relative to app data path
        ?:\Thumbs     : relative to this XYplorer's drive
        F:\Thumbs     : absolute
      Tip: In Configuration | Thumbnails, the tooltip of the Thumbnails 
      Cache Folder edit box now shows the resolved absolute path.
It's all in the Help...

Re: Make the cache path relative?

Posted: 27 Dec 2009 21:48
by TsunamiZ
thanks