pkudrys's avatar
pkudrys
Contributor
2 years ago
Status:
New Idea

Please add a RowCount property to DDTDriver object

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! 😉

 

No CommentsBe the first to comment