is it possible that the command:
%_file_mod_datetime%
creates the date in format:
JJJJ.MM.DD
because of german windows settings the command delivers DD.MM.JJJJ
thanks for help
greetings
muehli
is it possible that the command:
%_file_mod_datetime%
creates the date in format:
JJJJ.MM.DD
because of german windows settings the command delivers DD.MM.JJJJ
thanks for help
greetings
muehli
Your first choice is ... to set up your windows regional date setting to ISO 8601 standard ...
Your second choice is ... to use Mp3tag scripting functions to re-combine the %_file_mod_datetime% value into a sortable string ... e. g.
$regexp(%_FILE_MOD_DATETIME%,'^(\d\d).(\d\d).(\d\d\d\d).+$','$3.$2.$1')
from:
26.11.2009 05:16:08
to
2009.11.26
DD.20091126.1805.CET
thanks for your help!!!