File Creation Date Windows Store Version

Support for Windows users
Post Reply
Wiidesire
Posts: 3
Joined: 17 Feb 2018, 13:00

File Creation Date Windows Store Version

Post 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?
User avatar
rednoah
The Source
Posts: 22985
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: File Creation Date Windows Store Version

Post 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
:idea: Please read the FAQ and How to Request Help.
Wiidesire
Posts: 3
Joined: 17 Feb 2018, 13:00

Re: File Creation Date Windows Store Version

Post 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?
User avatar
rednoah
The Source
Posts: 22985
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: File Creation Date Windows Store Version

Post 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.
:idea: Please read the FAQ and How to Request Help.
Wiidesire
Posts: 3
Joined: 17 Feb 2018, 13:00

Re: File Creation Date Windows Store Version

Post 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.
Post Reply