boomingranny Posted July 9, 2007 Posted July 9, 2007 warning, running the script below will cause a memory leak $filehandle = fileopen ("c:\test.txt",2) FileWriteLine ($filehandle,"text") fileclose ($filehandle) while 1 $filehandle = FileOpen ("c:\test.txt",0) while 1 $line = FileReadLine($filehandle) If @error = -1 Then ExitLoop WEnd fileclose ($filehandle) wend i think its caused by the if @error = -1 then exitloop any ideas on how i could do something similar to this without the memory leak?
Siao Posted July 9, 2007 Posted July 9, 2007 See thishttp://www.autoitscript.com/forum/index.php?showtopic=48495 "be smart, drink your wine"
boomingranny Posted July 9, 2007 Author Posted July 9, 2007 See thishttp://www.autoitscript.com/forum/index.php?showtopic=48495thanks heaps for the speedy responce!!!! i was parsing thru several thousand html files and losing ram by the minute
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now