1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

* change cache dir

This commit is contained in:
Reinhard Pointner 2011-01-07 03:53:59 +00:00
parent 41e3c9ed9e
commit aa9b407fee
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@
Subdirectories can be specified below the property e.g. java.io.tmpdir/one
-->
<diskStore path="java.io.tmpdir/filebot-cache" />
<diskStore path="user.home/.filebot/cache" />
<!--
Cache configuration

View File

@ -36,7 +36,7 @@ public final class Settings {
// special handling for web start
if (System.getProperty("application.deployment") != null || System.getProperty("javawebstart.version") != null) {
// can't use working directory for web start applications
File folder = new File(System.getProperty("user.home"), "." + getApplicationName().toLowerCase());
File folder = new File(System.getProperty("user.home"), ".filebot");
// create folder if necessary
if (!folder.exists()) {