How can we read csv files through automation anywhere?
Answer Posted / Vivek Arya
In Automation Anywhere, you can read CSV files using the 'Text File' object. You can open the file, read each line, and parse the data using a delimiter like a comma. For example: TextFile.Open('csvfile.txt', ReadOnly).ReadLine().Split(',')
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers