Hi Community,
I am Running Batch file from Blueprism using Utility: Environment --> Start Process Action
Application : "cmd.exe"
Argument: "/C C:\Users\....\test.bat"
Batch file Content:
ECHO
cd /d T:\
FolderABCdir /s /b /o:gn >list.csv
It is running Perfectly Fine
What I need to do is I want to pass folder name Dynamically from BP Process
I can make the content of file like below
ECHO
cd /d T:\
{0}dir /s /b /o:gn >list.csv
Hence I wanted to know if there is any way to replace {0} with FolderName in batch file from Blueprism
------------------------------
Kirtish Trivedi
------------------------------