Can't convert txt to csv

The size of txt file is more than 700mb and usually uipath crashes when I’m trying to read .txt and create datatable for csv file.
Does anyone face with same problem?
have no idea how to solve it and can’t find solution in this forum

Hi @boredomboredom

Dim fileReader As System.IO.StreamReader
fileReader =
My.Computer.FileSystem.OpenTextFileReader(“C:\testfile.txt”)
Dim stringReader As String
stringReader = fileReader.ReadLine()

Try this in invoke code

1 Like

Where stringReader is your output