Forum Discussion
cstewart
9 years agoFormer Employee
In the file name field you can use an expression which looks something like:
"myfile" + Date.now().toLocaleDateTimeString('{"format":"DDD"}') + '.json'
cstewart
9 years agoFormer Employee
Actually, the following is more efficient:
"myfile" + Date.now().toLocaleDateTimeString({"format":"DDD"}) + '.json'
(Single quotes removed around the format…)