Azure logical app current time

user3195568 picture user3195568 · Feb 7, 2017 · Viewed 8.5k times · Source

I have an Azure Logical app that every hour gets a file from a website and create a file in OneDrive. Since the file does not have a dynamic name, it gets replaced every time. Is there a way to put the current date time in the filename?

Thank you, David

Answer

Joshua Duxbury picture Joshua Duxbury · May 1, 2018

@Rodrigo Daruich Alvarez's answer got me in the right direction but the format wasn't quite right. The below worked for me

concat('file',string(utcNow('yyyyMMdd'),'xls')

the formDataValue didn't seem to work.

documentation here