Get number of lines in text file: Difference between revisions
From NSIS Wiki
Jump to navigationJump to search
m (Wikipedia python library) |
m (Adding new author and category links.) |
||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{PageAuthor|Afrow UK}} | |||
== Description == | == Description == | ||
I used this to show % complete for reading stats from a file. | I used this to show % complete for reading stats from a file. | ||
Line 33: | Line 35: | ||
-Stu | -Stu | ||
[[Category:Text Files Manipulation Functions]] |
Latest revision as of 12:23, 24 June 2005
Author: Afrow UK (talk, contrib) |
Description
I used this to show % complete for reading stats from a file.
Usage
Push [filename] ;text file Call LineCount Pop $R0
$R0 = lines in file
The Function
Function LineCount Exch $R0 Push $R1 Push $R2 FileOpen $R0 $R0 r loop: ClearErrors FileRead $R0 $R1 IfErrors +3 IntOp $R2 $R2 + 1 Goto loop FileClose $R0 StrCpy $R0 $R2 Pop $R2 Pop $R1 Exch $R0 FunctionEnd
-Stu