Alazam Posted February 14, 2015 Share Posted February 14, 2015 Hello i want to add some information to a file without delete it what i can add to my filewrite or fileopen for it ? i know that in c++ its app but i dont know in lua Link to comment
Anubhav Posted February 14, 2015 Share Posted February 14, 2015 Just a example open = fileOpen(yourarguments) local read = fileRead( open ) fileWrite( open, read.."yolo" ) Link to comment
Alazam Posted February 14, 2015 Author Share Posted February 14, 2015 local positionfile = fileOpen("position.txt", false) fileWrite(positionfile, "Position: x = " .. x .. " y = " .. y .. " z = " .. z .. " ") fileClose(positionfile) here is my code it work but i want it to write at the end of the existing file Link to comment
Dealman Posted February 14, 2015 Share Posted February 14, 2015 Use the MTA Wiki. If you go to Client Functions, you'll find all the available file functions there, including fileIsEOF. Link to comment
Alazam Posted February 14, 2015 Author Share Posted February 14, 2015 Thank i have check the wiki but havent read this line When you open a file, its file position is set to the beginning of the file. Each call to fileRead or fileWrite moves the position ahead by the amount of bytes that were read/written. This way, by using fileIsEOF you can check if you've passed through the whole file. Link to comment
Alazam Posted February 14, 2015 Author Share Posted February 14, 2015 And i have another question it work fine but it dont return to ligne how i can do it ? Link to comment
Dealman Posted February 14, 2015 Share Posted February 14, 2015 Do you mean to add a new line? Put "\r\n" in your string to add linebreaks. Link to comment
ixjf Posted February 14, 2015 Share Posted February 14, 2015 Jesus. fileGetSize fileSetPos Link to comment
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