Presently working on Blue Prism V5.0, now I am working with the code block in BP now my aim is to get all the filesnames in a given folder/path. For this, I am using the C# code.
String[] str = Directory.GetFiles(inputFolderPath);
for this I am providing the input file/folder path through the same code block, the output of the file is string by default but BP doesn't have the type String so, how to convert the data type string to a collection.
Any suggestions will be helpful.
Thanks in advance