LoneReaper Posted March 21, 2004 Share Posted March 21, 2004 how do i use FileWriteLine and write to the begginng of my Inventory_RW.tab file? Link to comment Share on other sites More sharing options...
LoneReaper Posted March 21, 2004 Author Share Posted March 21, 2004 That seems to replace all my text and it adds the filename to the bottom? Link to comment Share on other sites More sharing options...
Developers Jos Posted March 21, 2004 Developers Share Posted March 21, 2004 FilePrepend("Inventory_RW.tab", "I am new text" & @CRLF)Func FilePrepend($szFile,$szText) If Not FileExists($szFile) Then Return $szBuffer = FileRead($szFile,FileGetSize($szFile)) $szBuffer = $szText & $szBuffer FileDelete($szFile) Return FileWrite($szFile,$szBuffer)EndFuncthis should help... Apples292 1 SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past. Link to comment Share on other sites More sharing options...
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