I am wondering what atomically: does in writeToFile:atomically:. I sometimes use YES and sometimes NO. But what changes if it is YES or NO?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

An 'atomic write' is one where you are guaranteed to have either a correct, complete write to the file or an error. There's no chance that, say, half of the write will work and then something bad happens (lost power, drive crash, etc) and the rest of the write fails. It's all or nothing. This is generally what you want.

link|improve this answer
feedback

atomically

If YES, the data is written to a backup file, and then—assuming no errors occur—the backup file is renamed to the name specified by path; otherwise, the data is written directly to path.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.