Hello Smart People
i would like to rename the file name by adding the yyyymmddhhmm to its original file name .
eg: example.xlsx to example202009281050.xlsx
I follow this link Rename an excel file without moving the file
FileSystem.Rename(“oldFilePath”,“newFilePath”)
And i ONLY wrote in the edit code as follow
FileSystem.Rename(“C:\Ui\RPA\OUTPUT\Example_.xlsx”,“C:\Ui\RPA\OUTPUT\Example_DateTime.Now().ToStringyyyyMMddhhmm.xlsx”)
Where do i need to fix it and do i need to write something in the invoke code property ?
Thank you very much
eimon