1、沙盒机制介绍

iOS 中的沙盒机制(SandBox)是一种安全体系。

每一个 iOS 应用程序都有一个单独的文件系统(存储空间)。并且仅仅能在相应的文件系统中进行操作,此区域被称为沙盒。

全部的非代码文件都要保存在此,比如属性文件 plist、文本文件、图像、图标、媒体资源等。

2、沙盒文件夹结构

通常情况下,每一个沙盒包括下面文件夹及文件:

  • /AppName.app 应用程序的程序包文件夹。因为应用程序必须经过签名,所以不能在执行时对这个文件夹中的内容进行改动。否则会导致应用程序无法启动。
  • /Documents/ 保存应用程序的关键数据文件和用户数据文件等。

    iTunes 同步时会备份该文件夹。

  • /Library/Caches 保存应用程序使用时产生的支持文件和缓存文件,还有日志文件最好也放在这个文件夹。iTunes 同步时不会备份该文件夹。
  • /Library/Preferences 保存应用程序的偏好设置文件(使用 NSUserDefaults 类设置时创建。不应该手动创建)。
  • /tmp/ 保存应用执行时所须要的暂时数据,iphone 重新启动时,会清除该文件夹下全部文件。

文件夹结构例如以下图所看到的:

补充1:对于上述描写叙述能够这样举例理解,一个记事本应用,用户写的东西须要保存起来。这些东西是用户自行生成的。则须要放在 Documents 文件夹里。一个新闻应用,假设须要从server下载东西展示给用户看,下载的东西就放在 Library/Caches 文件夹里。

苹果审核对这个要求非常严格,主要原因是 iCloud 的同步问题。

补充2:假设想知道真机或者模拟器 App 沙盒路径。可通过在项目中运行下述代码打印获取:

  1. NSString *homeDirectoryPath = NSHomeDirectory();

3、获取沙盒中各文件夹路径

  1. // 获取沙盒根文件夹路径
  2. NSString *homeDirectoryPath = NSHomeDirectory();
  3.  
  4. // 获取 Applications 路径
  5. NSString *appDirectoryPath = [NSSearchPathForDirectoriesInDomains(NSApplicationDirectory, NSUserDomainMask, YES) objectAtIndex:0];
  6.  
  7. // 获取 Documents 路径
  8. NSString *documentDirectoryPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
  9.  
  10. // 获取 Caches 路径
  11. NSString *cachesDirectoryPath = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) objectAtIndex:0];
  12.  
  13. // 获取 tmp 路径
  14. NSString *tmpDirectoryPath = NSTemporaryDirectory();

4、NSFileManager

使用 FileManager 能够对沙盒中的文件夹、文件进行操作。通过例如以下方式能够获取 NSFileManager 的单例:

  1. [NSFileManager defaultManager]

5、程序包(NSBundle)

iOS 应用都是通过 bundle 进行封装的,能够狭隘地将 bundle 理解为上述沙盒中的 AppName.app 文件。

在 Finder 中,会把 bundle 当做一个文件显示从而防止用户误操作导致程序文件损坏。但事实上内部是一个文件夹,包括了图像、媒体资源、编译好的代码、nib 文件等。这个文件夹称为 main bundle。

Cocaoa 提供了 NSBundle 类封装了 bundle 操作。

  1. // 获取应用程序的 main bundle
  2. NSBundle *mainBundle = NSBundle.mainBundle;
  3.  
  4. // 使用 main bundle 获取资源路径
  5. NSString *filePath = [mainBundle pathForResource:@"logo" ofType:@"png"];

6、工具类

FileUtil.h

  1. #import <UIKit/UIKit.h>
  2.  
  3. @interface FileUtil : NSObject
  4.  
  5. /**
  6. * 获取 home 路径
  7. *
  8. * @return
  9. */
  10. + (NSString *)homeDirectoryPath;
  11.  
  12. /**
  13. * 获取 app 路径
  14. *
  15. * @return
  16. */
  17. + (NSString *)appDirectoryPath;
  18.  
  19. /**
  20. * 获取 document 路径
  21. *
  22. * @return
  23. */
  24. + (NSString *)documentDirectoryPath;
  25.  
  26. /**
  27. * 获取 caches 路径
  28. *
  29. * @return
  30. */
  31. + (NSString *)cachesDirectoryPath;
  32.  
  33. /**
  34. * 获取 tmp 路径
  35. *
  36. * @return
  37. */
  38. + (NSString *)tmpDirectoryPath;
  39.  
  40. /**
  41. * 推断文件夹是否存在
  42. *
  43. * @param directoryPath 文件夹路径
  44. *
  45. * @return
  46. */
  47. + (BOOL)directoryExist:(NSString *)directoryPath;
  48.  
  49. /**
  50. * 推断文件是否存在
  51. *
  52. * @param filePath 文件路径
  53. *
  54. * @return
  55. */
  56. + (BOOL)fileExist:(NSString *)filePath;
  57.  
  58. /**
  59. * 在父文件夹下创建子文件夹
  60. *
  61. * @param parentDirectoryPath 父文件夹路径
  62. * @param directoryName 子文件夹名称
  63. *
  64. * @return
  65. */
  66. + (BOOL)createDirectoryAtParentDirectory:(NSString *)parentDirectoryPath directoryName:(NSString *)directoryName;
  67.  
  68. /**
  69. * 在父文件夹下创建子文件
  70. *
  71. * @param parentDirectoryPath 父文件夹路径
  72. * @param fileName 子文件名
  73. *
  74. * @return
  75. */
  76. + (BOOL)createFileAtParentDirectory:(NSString *)parentDirectoryPath fileName:(NSString *)fileName;
  77.  
  78. /**
  79. * 删除文件夹
  80. *
  81. * @param directoryPath 文件夹路径
  82. *
  83. * @return
  84. */
  85. + (BOOL)deleteDirectoryAtPath:(NSString *)directoryPath;
  86.  
  87. /**
  88. * 删除文件
  89. *
  90. * @param filePath 文件路径
  91. *
  92. * @return
  93. */
  94. + (BOOL)deleteFileAtPath:(NSString *)filePath;
  95.  
  96. /**
  97. * 获取父文件夹下的子内容(包括文件夹和文件)
  98. *
  99. * @param parentDirectoryPath 父文件夹路径
  100. *
  101. * @return
  102. */
  103. + (NSArray *)contentsAtParentDirectory:(NSString *)parentDirectoryPath;
  104.  
  105. /**
  106. * 获取父文件夹下的全部子文件夹名称
  107. *
  108. * @param parentDirectoryPath 父文件夹路径
  109. *
  110. * @return
  111. */
  112. + (NSArray *)directoryNamesAtParentDirectory:(NSString *)parentDirectoryPath;
  113.  
  114. /**
  115. * 获取父文件夹下的全部子文件夹路径
  116. *
  117. * @param parentDirectoryPath 父文件夹路径
  118. *
  119. * @return
  120. */
  121. + (NSArray *)directoryPathsAtParentDirectory:(NSString *)parentDirectoryPath;
  122.  
  123. /**
  124. * 获取父文件夹下的全部子文件名
  125. *
  126. * @param parentDirectoryPath 父文件夹路径
  127. *
  128. * @return
  129. */
  130. + (NSArray *)fileNamesAtParentDirectoryPath:(NSString *)parentDirectoryPath;
  131.  
  132. /**
  133. * 获取父文件夹下的全部子文件路径
  134. *
  135. * @param parentDirectoryPath 父文件夹路径
  136. *
  137. * @return
  138. */
  139. + (NSArray *)filePathsAtParentDirectoryPath:(NSString *)parentDirectoryPath;
  140.  
  141. @end

FileUtil.m

  1. #import "FileUtil.h"
  2.  
  3. @interface FileUtil ()
  4.  
  5. @end
  6.  
  7. @implementation FileUtil
  8.  
  9. + (NSString *)homeDirectoryPath
  10. {
  11. return NSHomeDirectory();
  12. }
  13.  
  14. + (NSString *)appDirectoryPath
  15. {
  16. NSArray *array = NSSearchPathForDirectoriesInDomains(NSApplicationDirectory, NSUserDomainMask, YES);
  17. return [array objectAtIndex:0];
  18. }
  19.  
  20. + (NSString *)documentDirectoryPath
  21. {
  22. NSArray *array = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
  23. return [array objectAtIndex:0];
  24. }
  25.  
  26. + (NSString *)cachesDirectoryPath
  27. {
  28. NSArray *array = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
  29. return [array objectAtIndex:0];
  30. }
  31.  
  32. + (NSString *)tmpDirectoryPath
  33. {
  34. return NSTemporaryDirectory();
  35. }
  36.  
  37. + (BOOL)directoryExist:(NSString *)directoryPath
  38. {
  39. NSFileManager *fileManager = [NSFileManager defaultManager];
  40. BOOL isDirectory = NO;
  41. BOOL exist = [fileManager fileExistsAtPath:directoryPath isDirectory:&isDirectory];
  42.  
  43. if (isDirectory && exist) {
  44. return YES;
  45. }
  46. return NO;
  47. }
  48.  
  49. + (BOOL)fileExist:(NSString *)filePath
  50. {
  51. NSFileManager *fileManager = [NSFileManager defaultManager];
  52. return [fileManager fileExistsAtPath:filePath];
  53. }
  54.  
  55. + (BOOL)createDirectoryAtParentDirectory:(NSString *)parentDirectoryPath directoryName:(NSString *)directoryName
  56. {
  57. NSFileManager *fileManager = [NSFileManager defaultManager];
  58. NSString *directoryPath = [NSString stringWithFormat:@"%@/%@", parentDirectoryPath, directoryName];
  59. return [fileManager createDirectoryAtPath:directoryPath withIntermediateDirectories:YES attributes:nil error:nil];
  60. }
  61.  
  62. + (BOOL)createFileAtParentDirectory:(NSString *)parentDirectoryPath fileName:(NSString *)fileName
  63. {
  64. NSFileManager *fileManager = [NSFileManager defaultManager];
  65. NSString *filePath = [NSString stringWithFormat:@"%@/%@", parentDirectoryPath, fileName];
  66. return [fileManager createFileAtPath:filePath contents:nil attributes:nil];
  67. }
  68.  
  69. + (BOOL)deleteDirectoryAtPath:(NSString *)directoryPath
  70. {
  71. NSFileManager *fileManager = [NSFileManager defaultManager];
  72. if ([self directoryExist:directoryPath]) {
  73. return [fileManager removeItemAtPath:directoryPath error:nil];
  74. }
  75. return NO;
  76. }
  77.  
  78. + (BOOL)deleteFileAtPath:(NSString *)filePath
  79. {
  80. NSFileManager *fileManager = [NSFileManager defaultManager];
  81. if ([self fileExist:filePath]) {
  82. return [fileManager removeItemAtPath:filePath error:nil];
  83. }
  84. return NO;
  85. }
  86.  
  87. + (NSArray *)contentsAtParentDirectory:(NSString *)parentDirectoryPath
  88. {
  89. NSFileManager *fileManager = [NSFileManager defaultManager];
  90. return [fileManager contentsOfDirectoryAtPath:parentDirectoryPath error:nil];
  91. }
  92.  
  93. + (NSArray *)directoryNamesAtParentDirectory:(NSString *)parentDirectoryPath
  94. {
  95. NSFileManager *fileManager = [NSFileManager defaultManager];
  96. BOOL isDirectory = NO;
  97. NSMutableArray *directoryPaths = [[NSMutableArray alloc] init];
  98. for (NSString *content in [self contentsAtParentDirectory:parentDirectoryPath]) {
  99. NSString *path = [NSString stringWithFormat:@"%@/%@", parentDirectoryPath, content];
  100. if ([fileManager fileExistsAtPath:path isDirectory:&isDirectory]) {
  101. if (isDirectory) {
  102. [directoryPaths addObject:content];
  103. }
  104. }
  105. }
  106. return [directoryPaths copy];
  107. }
  108.  
  109. + (NSArray *)directoryPathsAtParentDirectory:(NSString *)parentDirectoryPath
  110. {
  111. NSFileManager *fileManager = [NSFileManager defaultManager];
  112. BOOL isDirectory = NO;
  113. NSMutableArray *directoryPaths = [[NSMutableArray alloc] init];
  114. for (NSString *content in [self contentsAtParentDirectory:parentDirectoryPath]) {
  115. NSString *path = [NSString stringWithFormat:@"%@/%@", parentDirectoryPath, content];
  116. if ([fileManager fileExistsAtPath:path isDirectory:&isDirectory]) {
  117. if (isDirectory) {
  118. [directoryPaths addObject:path];
  119. }
  120. }
  121. }
  122. return [directoryPaths copy];
  123. }
  124.  
  125. + (NSArray *)fileNamesAtParentDirectoryPath:(NSString *)parentDirectoryPath
  126. {
  127. NSFileManager *fileManager = [NSFileManager defaultManager];
  128. BOOL isDirectory = NO;
  129. NSMutableArray *filePaths = [[NSMutableArray alloc] init];
  130. for (NSString *content in [self contentsAtParentDirectory:parentDirectoryPath]) {
  131. NSString *path = [NSString stringWithFormat:@"%@/%@", parentDirectoryPath, content];
  132. if ([fileManager fileExistsAtPath:path isDirectory:&isDirectory]) {
  133. if (!isDirectory) {
  134. [filePaths addObject:content];
  135. }
  136. }
  137. }
  138. return [filePaths copy];
  139. }
  140.  
  141. + (NSArray *)filePathsAtParentDirectoryPath:(NSString *)parentDirectoryPath
  142. {
  143. NSFileManager *fileManager = [NSFileManager defaultManager];
  144. BOOL isDirectory = NO;
  145. NSMutableArray *filePaths = [[NSMutableArray alloc] init];
  146. for (NSString *content in [self contentsAtParentDirectory:parentDirectoryPath]) {
  147. NSString *path = [NSString stringWithFormat:@"%@/%@", parentDirectoryPath, content];
  148. if ([fileManager fileExistsAtPath:path isDirectory:&isDirectory]) {
  149. if (!isDirectory) {
  150. [filePaths addObject:path];
  151. }
  152. }
  153. }
  154. return [filePaths copy];
  155. }
  156.  
  157. @end

7、结语

參考资料例如以下:

About
Files and Directories

NSFileManager
Class Reference

NSBundle Class Reference

【精】iOS 文件操作:沙盒(SandBox)、文件操作(FileManager)、程序包(NSBundle)的更多相关文章

  1. 沙盒SandBox

    每个App都有自己的沙盒,也就是一个存储空间.App之间没有权限访问对方的沙盒资源.沙盒的目录下有三个文件夹:Documents.Library.temp 目录结构 Documents:用于存储用户数 ...

  2. IOS 学习之 iOS沙盒(sandbox) 介绍 沙盒机制 文件操作(一)

    1.iOS沙盒机制 iOS应用程序只能在为该改程序创建的文件系统中读取文件,不可以去其它地方访问,此区域被成为沙盒,所以所有的非代码文件都要保存在此,例如图像,图标,声音,映像,属性列表,文本文件等. ...

  3. iOS 沙盒(sandbox)机制和文件操作

    本文参看了 http://www.uml.org.cn/mobiledev/201209211.asp#1 这篇文章中的介绍,尊重原著. 1.IOS沙盒机制 IOS应用程序只能在本应用程序中创建的文件 ...

  4. IOS学习之IOS沙盒(sandbox)机制和文件操作

    IOS学习之IOS沙盒(sandbox)机制和文件操作(一) 1.IOS沙盒机制 IOS应用程序只能在为该改程序创建的文件系统中读取文件,不可以去其它地方访问,此区域被成为沙盒,所以所有的非代码文件都 ...

  5. iOS学习之iOS沙盒(sandbox)机制和文件操作(一)

    1.iOS沙盒机制 iOS应用程序仅仅能在为该改程序创建的文件系统中读取文件,不能够去其他地方訪问,此区域被成为沙盒,所以全部的非代码文件都要保存在此,比如图像,图标,声音,映像,属性列表,文本文件等 ...

  6. iOS学习之iOS沙盒(sandbox)机制和文件操作复习

    1.iOS沙盒机制 iOS应用程序只能在为该改程序创建的文件系统中读取文件,不可以去其它地方访问,此区域被成为沙盒,所以所有的非代码文件都要保存在此,例如图像,图标,声音,映像,属性列表,文本文件等. ...

  7. iOS学习之iOS沙盒(sandbox)机制和文件操作1

    iOS学习之iOS沙盒(sandbox)机制和文件操作 接上篇 iOS学习之iOS沙盒(sandbox)机制和文件操作(一) 我们看看如何获取应用程序沙盒目录.包括真机的沙盒的目录. 1.获取程序的H ...

  8. IOS沙盒(sandbox)机制和文件操作

    IOS学习之IOS沙盒(sandbox)机制和文件操作   作者:totogo2010 ,发布于2012-9-21,来源:CSDN   目录: IOS学习之IOS沙盒(sandbox)机制和文件操作( ...

  9. 查看iOS沙盒(SanBox)文件

    转载:http://www.2cto.com/kf/201211/169212.html 每一个iOS程序都一个自己的文件系统,这个文件系统叫应用程序沙盒(SanBox),它存放这代码以外的文件,其他 ...

  10. iOS应用软件沙盒sandbox相关知识(整理)

    1.iOS沙盒机制原理 iOS应用程序只能在该程序创建的文件系统中读取文件,不可以去其它地方访问,此区域被成为沙盒,所以所有的非代码文件都要保存在此,例如图像,图标,声音,映像,属性列表,文本文件等. ...

随机推荐

  1. ZH奶酪:在博客中添加Latex公式

    1. 点击编辑器中的插入图片: 2.在URL输入下边的地址: http://latex.codecogs.com/gif.latex?你的latex代码 就可以了-

  2. asp.net 使用JS获得串口数据

    使用JS获得串口数据 JavaScript语言通常是一种网页编程语言,比较适合前台的一些应用设计.对于本地设备和数据的操作有比较大的限制.由于项目的需要,我需要获得本机的串口数据并显示在web端.我们 ...

  3. 网站中超链接方式直接添加QQ好友

    使用情景: 在图中点击图片,会弹出添加qq好友的窗口进行好友添加. 链接如下: tencent://AddContact/?fromId=45&fromSubId=1&subcmd=a ...

  4. vb sendmessage 详解1

    SendMessage函数的常用消息及其应用(有点长,希望能对大家有所帮助)函数原型: Declare Function SendMessage Lib "user32" Alia ...

  5. ios8.1.3Cydia重装

    1.下载deb包 2.把包放到/var/mobile/Media/下 3.终端输入:dpkg -i /var/mobile/Media/*.deb 然后输入:su -c uicache mobile ...

  6. TOMCAT问题总结

      迁移时间--2017年7月9日14:58:12Author:Marydon CreateTime--2016年12月25日21:55:09Author:MarydonTomcat问题总结问题一 A ...

  7. Android WiFi开发

    概述 介绍Android WiFi的扫描.连接.信息.以及WiFi热点等等的实现,并用代码实现. 详细 代码下载:http://www.demodashi.com/demo/10660.html 一. ...

  8. openstack里面的Provider network 和 Tenant network 的区别

    openstack里面的Provider network 和 Tenant network 的区别 openstack里面的网络相对复杂.经常有人对几个网络概念搞混淆,这里基本说明下 Openstac ...

  9. iOS 排序算法总结、二分法查找

    1.插入排序 在要排序的一组数中,假设前面(n-1) [n>=2] 个数已经是排好顺序的,现在要把第n个数插到前面的有序数中,使得这n个数也是排好顺序的.如此反复循环,直到全部排好顺序. 直接插 ...

  10. wap站、手机APP 接入支付宝、微信、银联支付。

    一.wap站 ①.支付宝接入 1.开发前准备:申请一个通过实名认证的企业支付宝账号,并申请开通手机WAP支付功能. 2.流程 参数准备: 企业支付宝账号的PID(也叫ParnerID)和KEY,如果使 ...