iOS 文件操作

释放双眼,带上耳机,听听看~!

 


1
2
3
4
5
1-(void)dirHome{
2    NSString *dirHome=NSHomeDirectory();    
3    NSLog(@app_home: %@,dirHome);
4}
5

1
2
1  iOS的沙盒机制,应用只能访问自己应用目录下的文件。iOS 不像android,没有SD卡的概念,不能直接访问图像、视频等内容。iOS应用产生的内容,如图像、文件、缓存内容等都必须存储在自己的沙盒内。默认情况下,每个 沙盒含有3个文件夹:Documents、Library和Tmp。 Library包含Caches、Preferences目录。如图:
2

 

iOS 文件操作

上面的完整路径:用户->资源库->Application Support->iPhone Simulator->6.1->Applications

Documents:苹果建议将程序创建产生的文件以及应用浏览产生的文件数据保存在该目录下,iTunes备份和恢复的时候会包括此目录;

Library:存储程序的默认设置或者其他状态信息;

Library/Caches:存放缓存文件,保存应用的持久化数据,用于应用升级或者应用关闭后的数据保存,不会被itunes同步,所以为了减少同步的时间,可以考虑将一些比较大的文件而又不需要备份的文件放到这个目录下

Tmp:提供一个即时创建临时文件的地方,但不需要持久化,在应用关闭后,该目录下的数据将被删除,也可能系统在程序不运行的时候清除

iOS 文件操作

 

iOS怎么获取沙盒路径,怎么操作文件呢?下面给出答案

 

获取应用沙盒根路径:


1
2
3
4
5
1-(void)dirHome{
2    NSString *dirHome=NSHomeDirectory();    
3    NSLog(@app_home: %@,dirHome);
4}
5

获取Documents目录路径:


1
2
3
4
5
6
7
8
9
1//获取Documents目录
2-(NSString *)dirDoc{
3    //[NSHomeDirectory() stringByAppendingPathComponent:@Documents];
4    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
5   NSString *documentsDirectory = [paths objectAtIndex:0];
6    NSLog(@app_home_doc: %@,documentsDirectory);
7    return documentsDirectory;
8}
9

获取Library目录路径:


1
2
3
4
5
6
7
8
1//获取Library目录
2-(void)dirLib{
3    //[NSHomeDirectory() stringByAppendingPathComponent:@Library];
4    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES);
5    NSString *libraryDirectory = [paths objectAtIndex:0];
6    NSLog(@app_home_lib: %@,libraryDirectory);
7}
8

获取Cache目录路径:


1
2
3
4
5
6
7
1//获取Cache目录
2-(void)dirCache{
3    NSArray *cacPath = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
4    NSString *cachePath = [cacPath objectAtIndex:0];
5    NSLog(@app_home_lib_cache: %@,cachePath);
6}
7

获取Tmp目录路径:


1
2
3
4
5
6
7
1//获取Tmp目录
2-(void)dirTmp{
3    //[NSHomeDirectory() stringByAppendingPathComponent:@tmp];
4    NSString *tmpDirectory = NSTemporaryDirectory();
5    NSLog(@app_home_tmp: %@,tmpDirectory);
6}
7

创建文件夹:


1
2
3
4
5
6
7
8
9
10
11
12
13
1//创建文件夹
2-(void *)createDir{
3    NSString *documentsPath =[self dirDoc];
4    NSFileManager *fileManager = [NSFileManager defaultManager];
5    NSString *testDirectory = [documentsPath stringByAppendingPathComponent:@test];
6    // 创建目录
7    BOOL res=[fileManager createDirectoryAtPath:testDirectory withIntermediateDirectories:YES attributes:nil error:nil];
8    if (res) {
9        NSLog(@文件夹创建成功);
10    }else
11        NSLog(@文件夹创建失败);
12 }
13

创建文件


1
2
3
4
5
6
7
8
9
10
11
12
13
1//创建文件
2-(void *)createFile{
3    NSString *documentsPath =[self dirDoc];
4    NSString *testDirectory = [documentsPath stringByAppendingPathComponent:@test];
5    NSFileManager *fileManager = [NSFileManager defaultManager];
6    NSString *testPath = [testDirectory stringByAppendingPathComponent:@test.txt];
7    BOOL res=[fileManager createFileAtPath:testPath contents:nil attributes:nil];
8    if (res) {
9        NSLog(@文件创建成功: %@ ,testPath);
10    }else
11        NSLog(@文件创建失败);
12}
13

写数据到文件:


1
2
3
4
5
6
7
8
9
10
11
12
13
1//写文件
2-(void)writeFile{
3    NSString *documentsPath =[self dirDoc];
4    NSString *testDirectory = [documentsPath stringByAppendingPathComponent:@test];
5    NSString *testPath = [testDirectory stringByAppendingPathComponent:@test.txt];
6    NSString *content=@测试写入内容!;
7    BOOL res=[content writeToFile:testPath atomically:YES encoding:NSUTF8StringEncoding error:nil];
8    if (res) {
9        NSLog(@文件写入成功);
10    }else
11        NSLog(@文件写入失败);
12}
13

读文件数据:


1
2
3
4
5
6
7
8
9
10
11
1//读文件
2-(void)readFile{
3    NSString *documentsPath =[self dirDoc];
4    NSString *testDirectory = [documentsPath stringByAppendingPathComponent:@test];
5    NSString *testPath = [testDirectory stringByAppendingPathComponent:@test.txt];
6//    NSData *data = [NSData dataWithContentsOfFile:testPath];
7//    NSLog(@文件读取成功: %@,[[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]);
8    NSString *content=[NSString stringWithContentsOfFile:testPath encoding:NSUTF8StringEncoding error:nil];
9    NSLog(@文件读取成功: %@,content);
10}
11

文件属性:


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
1//文件属性
2-(void)fileAttriutes{
3    NSString *documentsPath =[self dirDoc];
4    NSString *testDirectory = [documentsPath stringByAppendingPathComponent:@test];
5    NSFileManager *fileManager = [NSFileManager defaultManager];
6    NSString *testPath = [testDirectory stringByAppendingPathComponent:@test.txt];
7    NSDictionary *fileAttributes = [fileManager attributesOfItemAtPath:testPath error:nil];  
8    NSArray *keys;
9    id key, value;
10    keys = [fileAttributes allKeys];
11    int count = [keys count];
12    for (int i = 0; i < count; i++)
13    {
14        key = [keys objectAtIndex: i];
15        value = [fileAttributes objectForKey: key];
16        NSLog (@Key: %@ for value: %@, key, value);
17    }
18}
19

删除文件:


1
2
3
4
5
6
7
8
9
10
11
12
13
14
1//删除文件
2-(void)deleteFile{
3    NSString *documentsPath =[self dirDoc];
4    NSString *testDirectory = [documentsPath stringByAppendingPathComponent:@test];
5    NSFileManager *fileManager = [NSFileManager defaultManager];
6    NSString *testPath = [testDirectory stringByAppendingPathComponent:@test.txt];  
7    BOOL res=[fileManager removeItemAtPath:testPath error:nil];
8    if (res) {
9        NSLog(@文件删除成功);
10    }else
11        NSLog(@文件删除失败);  
12    NSLog(@文件是否存在: %@,[fileManager isExecutableFileAtPath:testPath]?@YES:@NO);
13}
14

1
2
1  
2

给TA打赏
共{{data.count}}人
人已打赏
安全运维

故障复盘的简洁框架-黄金三问

2021-9-30 19:18:23

安全运维

OpenSSH-8.7p1离线升级修复安全漏洞

2021-10-23 10:13:25

个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索