Possible Duplicate:
iOS - appending to end of file with NSMutableString
Say I have a file at /var/mobile/Documents/myfile.txt
And that file contains
Text
Some more text
How can I append
Even more text
to the end of that file?
Possible Duplicate:
iOS - appending to end of file with NSMutableString
Say I have a file at /var/mobile/Documents/myfile.txt
And that file contains
Text
Some more text
How can I append
Even more text
to the end of that file?
Read the content of the file in NSMutableData. convert the appended text to bytes and append the bytes to NSMutableData then write the NSMutableData to File