Page 1 of 1

File Creation Date Windows Store Version

Posted: 17 Feb 2018, 13:17
by Wiidesire
I've been using FileBot for a while and modified the ini settings in order to set the File creation date to when the episode originally aired. Since a 75% off promo is running right now I bought Filebot from the Windows Store.
Now I've looked everywhere (both on this forum and on my computer) and can't find any documentation whatsoever about the Windows Store version. Where is the settings file? The only settings I found are in the registry under HKEY_CURRENT_USER\Software\JavaSoft\Prefs\net\filebot.

The question:
How to set the file creation date as air date in the Windows Store version?

Re: File Creation Date Windows Store Version

Posted: 17 Feb 2018, 13:59
by rednoah
Presumably, you're asking how to set the useCreationDate Java system property:

Code: Select all

-DuseCreationDate=true

:idea: You can either set the JAVA_OPTS or the FILEBOT_OPTS environment variable if you want to pass in additional default startup options.


You can use this CMD command to set the FILEBOT_OPTS environment variable:

Code: Select all

setx FILEBOT_OPTS -DuseCreationDate=true

Re: File Creation Date Windows Store Version

Posted: 17 Feb 2018, 14:58
by Wiidesire
Thanks for the fast answer.

Code: Select all

setx FILEBOT_OPTS -DuseCreationDate=true
Works for the air date as creation date.

However on my Win10 Pro machine the modified date gets updated to the current date when I rename files. To fix this:

Code: Select all

setx FILEBOT_OPTS -DuseExtendedFileAttributes=false
However I can't seem to add both options:

Code: Select all

setx FILEBOT_OPTS -DuseExtendedFileAttributes=false -DuseCreationDate=true
Error: Syntax, standard option can't be used more than two times.

How can I use multiple FILEBOT_OPTS options?

Re: File Creation Date Windows Store Version

Posted: 17 Feb 2018, 15:33
by rednoah
setx accepts 2 arguments, key and value:

Code: Select all

setx FILEBOT_OPTS "-DuseExtendedFileAttributes=false -DuseCreationDate=true"
If you prefer a GUI, then you can use "Edit Environment Variables" in the Windows Settings.

Re: File Creation Date Windows Store Version

Posted: 17 Feb 2018, 15:43
by Wiidesire
Perfect, just needed the quotes for it to work. Thanks for the tip, I'll probably use the Environment Variables GUI in the future (if I need it) in order to not override previous settings.