适用于 iOS 4.0 应用程序的 NSFileProtectionComplete

发布于 2024-09-09 01:38:34 字数 93 浏览 3 评论 0原文

我看到了有关 NSFileProtectionComplete 和保护应用程序数据的 WWDC 2010 视频。

有没有什么例子?有人有示例代码可以分享吗?

I saw a WWDC 2010 video about NSFileProtectionComplete and protecting app's data.

Are there any examples out there? Does any one have sample code to share?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼藏柔 2024-09-16 01:38:34

请参阅 NSFileManager 类文档:

该文件以加密方式存储
格式化在磁盘上且无法读取
或在设备处于工作状态时写入
锁定或启动。

它基本上是单个文件的文件库。您只需在设置文件属性时传递常量即可。

要将文件标记为受保护,您必须
为其添加扩展属性。这
基础框架包括两种方式
添加此属性:

写入 NSData 的内容时
对象到磁盘使用
writeToFile:选项:错误:方法,
包括
NSDataWritingFileProtectionComplete
选项。

使用
setAttributes:ofItemAtPath:错误:
NSFileManager 的方法添加
NSFileProtectionKey 属性(带有
NSFileProtectionComplete 值)到
现有文件

http://developer.apple.com/ iphone/library/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/StandardBehaviors/StandardBehaviors.html

See the NSFileManager class doc:

The file is stored in an encrypted
format on disk and cannot be read from
or written to while the device is
locked or booting.

It's basically file vault for individual files. You just pass the constant when you set the file attributes.

To mark a file as protected, you must
add an extended attribute to it. The
Foundation framework includes two ways
to add this attribute:

When writing the contents of an NSData
object to disk using the
writeToFile:options:error: method,
include the
NSDataWritingFileProtectionComplete
option.

Use the
setAttributes:ofItemAtPath:error:
method of NSFileManager to add the
NSFileProtectionKey attribute (with
the NSFileProtectionComplete value) to
an existing file

.

http://developer.apple.com/iphone/library/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/StandardBehaviors/StandardBehaviors.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文