Please add a RowCount property to DDTDriver object. At the moment, there is only ColumnCount property available and the only way how to get the row count seems to be using below code:
let csvRowCount=0;
DDT.CSVDriver("c:\\path\\to\\file.csv");
while (!DDT.CurrentDriver.EOF())
{
csvRowCount++
DDT.CurrentDriver.Next();
}
Thanks for the attention! 😉