Blueprism, put current date as the name of an excel in Blueprism

0

I'm new to BluePrism. I have a file "file.xlsx" and I need to move it from folder and change its name. The name must have the format "file_ddmm.xlsx" ("ddmm" Current day and month). I hope you can help me or give me an idea of how to do this, in advance thank you very much

    
asked by SeveredementiA 29.01.2018 в 15:56
source

1 answer

0

To do what you say you can help with the generic VBOs that BluePrism provides.

In this case you can use the VBO "Utility - File Management". This VBO has a move action with two input parameters:

  • Source Path (Path of the file you want to move)
  • Destination path (Path + destination file name)

In case you want to change the final name. You can use Format Date in the expression of the destination parameter: For example: "C: \ NEW_DESTINO \" & "FileName" & FormatDate (Now (); "ddMM") & ".xlsx"

    
answered by 28.02.2018 / 14:06
source