I am new to BluePrism. I have a file archivo.xlsx
and I need to move it to another folder and change its name. The name must be in the format archivo_ddmm.xlsx
("ddmm" Current day and month).
I am new to BluePrism. I have a file archivo.xlsx
and I need to move it to another folder and change its name. The name must be in the format archivo_ddmm.xlsx
("ddmm" Current day and month).
To do what you're saying, you can use the generic VBOs provided by BluePrism.
In this case you can use the VBO "Utility - File Management". This VBO has a move action with two input parameters:
In case you want to change the final name. You can make use of Format Date in the destination parameter expression: For example: "C:\NEW_DESTINO\" & "FileName" & FormatDate(Now(); "ddMM") & ".xlsx"