How to write data row item in text file

I have done nick name generation example which is available in uipath training.
At the time print the output, I want that output in text file rather than on console.
please help me out for this.Main(Autosaved).xaml (50.5 KB)

Please go through with Data Manipulation sequence from above .xaml

if the file already exists, use the ‘append line’ activity in which you type String.Join(", ", datarow.itemarray) (this will join all of the row’s values, separated by ", " into a string).

1 Like