writeToFile:atomically: what does atomically mean?

后端 未结 2 743
悲&欢浪女
悲&欢浪女 2020-12-25 09:50

I am wondering what the atomically: parameter stands for in the writeToFile:atomically: method (-[NSArray writeToFile:atomically:] for

相关标签:
2条回答
  • 2020-12-25 10:14

    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.

    0 讨论(0)
  • 2020-12-25 10:25

    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.

    0 讨论(0)
提交回复
热议问题