Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Low level file functions -counting lines of code in proprams
Message
From
15/05/1998 14:37:17
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Other
Title:
Low level file functions -counting lines of code in proprams
Miscellaneous
Thread ID:
00099818
Message ID:
00099818
Views:
56
Hello:
I'm writing a program to count the lines of code in my programs.
I need to be able the count the lines of code without including the comments and blank spaces. Any ideas on how to do this? THis is the code that I'm using that returns the total number of lines including comments.
gnfilehandle = fopen("mainlib.prg")
nsize = fseek(gnfilehandle,0,2)
if nsize <= 0
wait window "this file is empty!" nowait
else
=fseek(gnfilehandle, 0)
lctext = fread(gnfilehandle, nsize)
lnlines = occurs(chr(13), lctext)
? lnlines
endif

This works and returns total number of lines. Any suggestions would be greatly appreciated.
Next
Reply
Map
View

Click here to load this message in the networking platform