-fileHandleForWritingAtPath: 和 fileHandleForUpdatingAtPath: 之间的区别?
对我来说,这听起来像是同一件事。更新文件意味着写入文件。写入文件对我来说也是一种更新。但我想有一个微妙的区别;-)
有人知道吗?
For me it sounds like the same thing. Updating a file implies to write to the file. Writing to a file is also an update for me. But I guess there's a subtle difference ;-)
Does anyone know?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
fileHandleForWritingAtPath:
返回一个仅响应writeData:
的对象。fileHandleForUpdatingAtPath:
响应 NSFileHandle read... 消息和writeData:
。fileHandleForWritingAtPath:
returns an object that responds only towriteData:
.fileHandleForUpdatingAtPath:
responds to both NSFileHandle read... messages andwriteData:
.