I have a file location in config File and i’m getting that into my process by passing an Argument and i’m FOR EACH activity to get that file from folder but i’m getting error ( For Each: Unable to cast object of type ‘System.Char’ to type ‘System.String’)
If your TEMP_FLOWCHART variable is the folder path, in the For Each statement, replace it with Directory.GetFiles(TEMP_FLOWCHART)
Else, if your TEMP_FLOWCHART is the file itself, you don’t need a for each loop to use that file.