如何在 Automation Anywhere 中的文件名后附加今天的日期?

How do i append today's date after the file name in Automation Anywhere?

我正在尝试重命名格式如下的文件 -

"FileName" $date$ ".xlsx"

但是,文件名是用随机数字保存的,例如 24.xlsx。 我尝试从变量管理器屏幕更改日期格式并将其设置为 mm/dd/yyyy,但仍然没有成功。 对此有何帮助?

automation anywhere 中的代码如下所示: 将文件 C\Users\<username>\Documents\query.xlsx 重命名为 "FileName $Date$ .xlsx"

enter image description here enter image description here

预期结果类似于:Filename 09152019.xlsx

实际结果:24.xlsx

文件名不能有 / 或 : 要重命名 post 中提到的文件,请使用 $Month$$Day$$Year$ 如果日或月小于 10,例如 09/15/2019将是 9152019.

因此,要使其基于两个数字,您需要使用 if 条件分别检查日期和月份值,如果小于 10,您将执行变量操作以在左侧添加 0。