Hi,
I'm in using "Create file (Sharepoint connector)", how to change the file name with timestamp? eg. oringinal name is ABC.xlsx, change to ABC20240925.xlsx.
"name": "@item()?['name']", This is the code to use original name, whic is successful.
"name": "concat(@{item()?['name']} ,utcNow('yyyy-MM-ddTHH-mm-ssZ'))", This is the code, try to add timestamp after original file name. but the result is failed to have proper file extention name, and file name is same to concat string.
How to correct it?