⚠️版权声明:本文为博主原创文章,转载必须标明原文出处。

​一、 每个iOS应用SDK都被限制在“沙盒”中,“沙盒”相当于一个加了仅主人可见权限的文件夹,苹果对沙盒有以下几条限制。

(1)应用程序可以在自己的沙盒里运作,但是不能访问任何其他应用程序的沙盒。

(2)应用程序间不能共享数据,沙盒里的文件不能被复制到其他应用程序文件夹中,也不能把其他应用程序文件夹中的文件复制到沙盒里。

(3)苹果禁止任何读、写沙盒以外的文件,禁止应用程序将内容写到沙盒以外的文件夹中。

(4)沙盒根目录里有三个文件夹:

Documents,一般应该把应用程序的数据文件存到这个文件夹里,用于存储用户数据或其他应该定期备份的信息。因为应用的沙盒机制,应用只能在几个目录下读写文件。苹果建议将程序中建立的或在程序中浏览到的文件数据保存在该目录下,iTunes备份和恢复的时候会包括此目录。

Library,存储程序的默认设置或其它状态信息,其下有两个文件夹:Caches存储应用程序再次启动所需的信息,存放缓存文件,iTunes不会备份此目录,此目录下文件不会在应用退出删除;Preferences包含应用程序偏好设置文件,不过不要在这里修改偏好设置。

tmp,提供一个即时创建临时文件的地方,即应用程序再次启动不需要的文件。

(5)iTunes在与iPhone同步时,备份所有的Documents和Library文件。

iPhone在重启时,会丢弃所有的tmp文件。

二、获取沙盒路径

//用NSHomeDirectory获取沙盒根目录

NSString *homeDirectory =

NSHomeDirectory();

NSLog(@"homeDirectory:%@",

homeDirectory);

//用用户名获取沙盒根目录

NSString *userName =

NSUserName();

NSString *rootPath =

NSHomeDirectoryForUser(userName);

NSLog(@"rootPath:%@",

rootPath);

//获取Document路径

NSArray *documentPaths

=NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,

YES);

NSString *documentPath =

[documentPaths objectAtIndex:0];

NSLog(@"documentPath:%@",

documentPath);

//获取Library目录

NSArray *libraryPaths

=NSSearchPathForDirectoriesInDomains(NSLibraryDirectory,NSUserDomainMask,

YES);

NSString *libraryPath =

[libraryPaths objectAtIndex:0];

NSLog(@"libraryPath:%@",

libraryPath);

//获取Cache目录

NSArray *cachesPaths =

NSSearchPathForDirectoriesInDomains(NSCachesDirectory,NSUserDomainMask,YES);

NSString *cachesPath =

[cachesPaths objectAtIndex:0];

NSLog(@"cachesPath:%@",

cachesPath);

//获取tmp目录

NSString *tmpDir =

NSTemporaryDirectory();

NSLog(@"tmpDir:%@",

tmpDir);

打开Finder,前往文件夹(Shift + Cmd + G)

输入沙盒根目录地址

(本例:/Users/tgyp/Library/Developer/CoreSimulator/Devices/5987A737-D1ED-46B3-A417-FFBC88FB2BD6/data/Containers/Data/Application/2490B94C-1358-4003-A64C-8B86D658A68D)

点击前往:

沙盒目录结构如下:

三、文件操作(NSFileManager)

(1)Plist文件操作

1、创建plist并写入

方式一、可以在工程中直接创建,把固定的内容写入,这个需要人工手动写入(工程里只可读取,不可以写入)

方式二、wirteToFile创建

//创建一个plist文件

NSString *documentPath

=[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES)

objectAtIndex:0];

//注意是stringByAppendingPathComponent,而不是stringByAppendingString

NSString

*plistPath = [documentPath

stringByAppendingPathComponent:@"animals.plist"];

NSLog(@"plistPath:%@", plistPath);

NSFileManager*fileManager =

[NSFileManagerdefaultManager];

if(![fileManager

fileExistsAtPath:plistPath]) {

//创建一个plist文件

[fileManager

createFileAtPath:plistPath

contents:nilattributes:[NSDictionarydictionary]];

}

//创建一个dic,写到plist文件里

NSArray *catChineseNameArr =

@[@"中国狸花猫",

@"波斯猫",

@"喜玛拉雅猫",

@"金吉拉",

@"英国短毛",

@"美国短毛(伟嚞的模特猫)",

@"异国短毛(加菲)",

@"东方短毛",

@"北美洲短毛",

@"暹逻猫",

@"加拿大无毛猫",

@"苏哥兰折耳",

@"高地折耳",

@"孟加拉豹猫",

@"俄罗斯蓝猫",

@"埃及猫", @"缅因猫",

@"巴曼猫",

@"挪威森林猫",

@"沙特尔猫",

@"克拉特猫",

@"哈瓦那猫",

@"布偶猫",

@"凡稀卷耳",

@"安哥拉猫",

@"新加坡猫"];

NSArray *catEnglishNameArr =

@[@"Chinese Li Hua", @"Persian

cat", @"Himalayan Cat",

@"chinchilla", @"british shorthair",

@"USA Shorthair", @"Garfield", @"Oriental

shorthair", @"Pixie-Bob", @"Siamese

cat", @"Canadian Hairless", @"Scottish

Fold", @"High Land Scotish Fold",

@"Bengal Cat", @"Russian blue cat",

@"Egyptian cat", @"Maine coon",

@"Birman", @"Norwegian Forest Cat",

@"Chartreux", @"Korat",

@"havana", @"Puppet cat", @"Curl

cat", @"Angola cat",

@"Singapura"];

NSMutableDictionary *catDict =

[NSMutableDictionarydictionaryWithCapacity:0];

for

(int i = 0; i <

catChineseNameArr.count; i ++) {

NSString *catChineseName =

catChineseNameArr[i];

NSString *catEnglishName =

catEnglishNameArr[i];

[catDict setObject:catEnglishName

forKey:catChineseName];

}

NSArray *dogChineseNameArr =

@[@"阿拉斯加",

@"哈士奇", @"泰迪犬",

@"比熊犬", @"蝴蝶犬",

@"拉布拉多", @"金毛",

@"萨摩耶", @"吉娃娃",

@"牧羊犬", @"黑背",

@"贵宾犬"];

NSArray *dogEnglishNameArr =

@[@"Alaskan Malamute",

@"Husky", @"Teddy Dog", @"Bichon

frise", @"papillon", @"The Labrador

Retriever", @"Golden Retriever",

@"Samoyed Dog", @"Chihuahua", @"Shepherd

Dog", @"German shepherd",

@"Poodle"];

NSMutableDictionary *dogDict =

[NSMutableDictionarydictionaryWithCapacity:0];

for

(int i = 0; i <

dogChineseNameArr.count; i ++) {

NSString *dogChineseName =

dogChineseNameArr[i];

NSString *dogEnglishName =

dogEnglishNameArr[i];

[dogDict setObject:dogEnglishName

forKey:dogChineseName];

}

//将上面的两个小字典保存到大字典里面

NSMutableDictionary *animalsDict =

[NSMutableDictionarydictionaryWithCapacity:0];

[animalsDict

setObject:catDict

forKey:@"cat"];

[animalsDict

setObject:dogDict

forKey:@"dog"];

BOOL

isSuccess = [animalsDict writeToFile:plistPath

atomically:YES];

if

(isSuccess) {

NSLog(@"创建animals.plist成功!");

} else {

NSLog(@"创建animals.plist失败!");

}

查看目录文件(成功创建)

双击打开Plist文件:

方式三、也可以将工程中plist文件复制到沙盒中

例如:用方式一创建plist,然后open as  ->

Source Code

复制粘贴方式二创建的plist的源代码后Open As -> Property

List即可。

//拷贝工程中的plist文件到沙盒目录下:

NSError *error;

NSFileManager

*fileManager =

[NSFileManagerdefaultManager];

NSString *bundle =

[[NSBundlemainBundle]

pathForResource:@"animals"ofType:@"plist"];

NSString *documentPath

=[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES)

objectAtIndex:0];

NSString

*copyPlistPath = [documentPath

stringByAppendingPathComponent:@"animals_copy.plist"];

NSLog(@"copyPlistPath:%@",

copyPlistPath);

//如果已经存在,则删除该plist文件;否则会复制失败!(“animals.plist”

couldn’t be copied to “Documents” because an item with the same

name already exists.)

if([fileManager

fileExistsAtPath:copyPlistPath]) {

[fileManager

removeItemAtPath:copyPlistPath

error:nil

];

}

BOOL

copySuccess = [fileManager copyItemAtPath:bundle

toPath:copyPlistPath

error:&error];

if

(copySuccess) {

NSLog(@"复制到沙盒Documents成功!");

} else {

NSLog(@"复制到沙盒Documents失败!%@",error.localizedDescription);

}

2、读取Plist文件

//读取工程本地的plist文件

NSString *bundlePath =

[[NSBundlemainBundle]

pathForResource:@"animals"ofType:@"plist"];

NSMutableDictionary *localPlistDict =

[NSMutableDictionary

dictionaryWithContentsOfFile:bundlePath];

NSLog(@"localPlistDict:%@",

localPlistDict);

读取沙盒中的 plist也是一样:

NSString

*documentPath

=[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES)

objectAtIndex:0];

NSString

*plistPath = [documentPath

stringByAppendingPathComponent:@"animals.plist"];

NSFileManager

*manager =

[NSFileManagerdefaultManager];

if ([manager

fileExistsAtPath:plistPath]) {

NSMutableDictionary

*documentsPlistDict = [NSMutableDictionary

dictionaryWithContentsOfFile:plistPath];

NSLog(@"documentsPlistDict:%@",

documentsPlistDict);

} else {

NSLog(@"%@ do not

exists", plistPath);

}

(2)txt文件操作

NSString

*documentPath

=[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES)

objectAtIndex:0];

//注意是stringByAppendingPathComponent,而不是stringByAppendingString

NSString

*testDir = [documentPath

stringByAppendingPathComponent:@"test"];

NSFileManager

*manager =

[NSFileManagerdefaultManager];

NSError

*createError;

//创建文件夹(test),文件夹不会重复创建,如果相同名称的文件夹已存在,则不创建,也不会覆盖原有的文件夹!

BOOL createSuccess = [manager

createDirectoryAtPath:testDir

withIntermediateDirectories:YESattributes:nilerror:&createError];

if

(createSuccess) {

NSLog(@"创建文件夹成功:%@",

testDir);

} else {

NSLog(@"创建文件夹失败:%@",

createError.localizedDescription);

}

NSString

*testPath1 = [testDir

stringByAppendingPathComponent:@"test00.txt"];

NSString

*testPath2 = [testDir

stringByAppendingPathComponent:@"test01.txt"];

NSString

*testPath3 = [testDir

stringByAppendingPathComponent:@"test02.txt"];

NSString *string =

@"写入内容,write String";

[manager

createFileAtPath:testPath1

contents:[string

dataUsingEncoding:NSUTF8StringEncoding]

attributes:nil];

[manager

createFileAtPath:testPath2

contents:[string

dataUsingEncoding:NSUTF8StringEncoding]

attributes:nil];

[manager

createFileAtPath:testPath3

contents:[string

dataUsingEncoding:NSUTF8StringEncoding]

attributes:nil];

//获取目录列里所有文件名(包括子目录下的文件)

NSArray

*paths = [manager subpathsAtPath:documentPath];

NSLog(@"paths:%@", paths);

其他类型的文件或数据创建和读写也是相似的,在此就不累赘阐述了。

参考:

http://my.oschina.net/u/616092/blog/89339

http://blog.csdn.net/totogo2010/article/details/7669837

http://www.open-open.com/code/view/1433689785161

http://blog.csdn.net/totogo2010/article/details/7671144

ios 获取沙盒文件名_iOS_沙盒(sandbox)机制及获取沙盒路径和文件操作(NSFileManager)...相关推荐

  1. iOS 文件操作 NSFileManager

    文章目录 相关知识 相关文件操作 NSFileManager和NSFileHandle 对象等复杂类型的读写操作 参考 相关知识 沙盒机制 每一个iOS应用程序都会为自己创建一个文件系统目录,这个独立 ...

  2. Objective-C文件和目录操作,IOS文件操作,NSFileManager使用文件操作

    Objective-C文件和目录操作,IOS文件操作,NSFileManager使用文件操作: objective-c通过使用NSFileManager类来管理和操作文件.目录,NSFileManag ...

  3. iOS 开发之沙盒机制 文件操作 (NSFielManager)

    原文链接:http://www.jianshu.com/p/349855b5a8ae iOS APP 可以在自己的沙盒里读写文件,但是,不可以访问其他 APP 的沙盒.每一个 APP 都是一个信息孤岛 ...

  4. [绍棠] iOS文件目录和文件操作 及NSFileManager的读写操作

    1.理解部分 1.1文件 <1>文件管理类NSFileManager 2.对文件进行管理操作 a.遍历查看目录下的文件 [深度遍历] [浅度遍历] b.创建文件/目录 c.拷贝文件/目录 ...

  5. ios 获取沙盒文件名_获取IOS各种沙盒路径的方法

    在下初学IOS编程,有很多不懂以及不了解的地方,本着分享的精神,将自己学到用到的一些东西写出来,如果有不正确的地方,希望大家指正. 本次讲解的是IOS下各个文件夹的相关知识. 首先,我们应该知道,在I ...

  6. iOS学习7:iOS沙盒(sandBox)机制(一)之获取沙盒路径及目录说明(转)

    转:http://my.oschina.net/joanfen/blog/151145 一.iOS沙盒机制 iOS的应用只能访问为该应用创建的区域,不可访问其他区域,应用的其他非代码文件都存在此目录下 ...

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

    本文转载自http://blog.csdn.net/totogo2010/article/details/7671144,感谢作者 1.iOS沙盒机制 iOS应用程序只能在为该改程序创建的文件系统中读 ...

  8. iOS开发:沙盒机制以及利用沙盒存储字符串、数组、字典等数据

    iOS开发:沙盒机制以及利用沙盒存储字符串.数组.字典等数据 1.初识沙盒:(1).存储在内存中的数据,程序关闭,内存释放,数据就会丢失,这种数据是临时的.要想数据永久保存,将数据保存成文件,存储到程 ...

  9. (0051)iOS开发之沙盒(sandbox)机制和文件操作(一)

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

最新文章

  1. 【RocketMQ工作原理】消息堆积与消费延迟
  2. java配置文件中的plugin,启用ContextReplacementPlugin以忽略webpack中的配置和测试设置文件...
  3. VTK:图表之TreeBFSIterator
  4. Android单元测试框架Robolectric3.0介绍(二)
  5. Android开发之使用Android studio进行两个项目合并的方法
  6. 0ctf2017-babyheap调试记录fastbin-attack
  7. jupyter安装php,Jupyter Notebook下安装PHP内核
  8. 离散数学:构造性二难推理和破坏性二难定理的解释
  9. 帆软FineMobile 自适应
  10. ETL介绍与ETL工具比较
  11. RS485电路原理以及设计
  12. 全解小程序猜数字游戏 04《 程序员变现指南之 微信QQ 小程序 真的零基础开发宝典》
  13. 如何在Excel中创建组合图
  14. App应用字体大小保持固定以及关于Configuration的变化
  15. 如何关闭移动硬盘的自动休眠功能
  16. 职称计算机ppt,2017年职称计算机考试(PPT练习题大全)(3)
  17. 极光小课堂 | PostCss浅析之词法分析
  18. 什么是 ArrayList
  19. docker部署博客项目
  20. Hive3入门至精通(基础、部署、理论、SQL、函数、运算以及性能优化)15-28章

热门文章

  1. 美容行业小程序的价值好处
  2. 面向对象——类与对象的概念
  3. mac address 的一些操作
  4. 100个高频Spring面试题,助你一臂之力
  5. ZedGraph保存图片的两种方式
  6. 多策略黑猩猩优化算法-附代码
  7. Life feelings--10--inspiration and inner motivation
  8. 微信定向流量_我和小伙伴都玩微信定向流量了
  9. 光纤测温技术简介及其应用
  10. C语言实现操作系统的进程调度算法--RR算法