iOS - 文件操作(File Operating)
1. 沙盒 & NSData
/*_______________________________获取沙盒路径_________________________________________*/
//第一种获取方式
//NSHomeDirectory();获取到沙盒的目录路径
NSString *homePath = NSHomeDirectory();
NSLog(@"沙盒目录:%@",homePath);
NSString *docPath1 = [NSString stringWithFormat:@"%@/Documents",homePath];
NSString *docPath2 = [homePath stringByAppendingString:@"/Documents"];
NSLog(@"\ndocPath1:%@,\ndocPath2:%@",docPath1,docPath2);
//第二种获取方式.
/*
NSDocumentDicrectory: Documents文件夹
NSLibraryDirectory : Library文件夹
*/
/*
NSArray *array = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSLog(@"array:%@",array);
2. 沙盒 & NSData & NSFileManager
(NSFileManager:文件的创建、复制、删除、前切文件(注意:操作对象为文件,而不是文件内容)。)
//演示路径
NSString *path = @"/Users/apple/file.text";
//1.返回路径的组成部分
NSArray *array = [path pathComponents];
NSLog(@"pathComponents:%@",array);
//2.路径的最后组成部分
NSString *lastPathComponent = [path lastPathComponent];
NSLog(@"lastComponent:%@",lastPathComponent);
//3.追加子路径
NSString *newPath1 = [path lastPathComponent];
NSLog(@"newPath1=%@",newPath1);
NSString *newPath2 = [path stringByAppendingPathComponent:@"/appFile.text"];
NSLog(@"newPath2:%@",newPath2);
//4.删除最后的组成部分
NSString *deleteLast = [path stringByDeletingLastPathComponent];
NSLog(@"deleteLast:%@",deleteLast);
//5.删除扩展名
NSString *deleteExtension = [path stringByDeletingPathExtension];
NSLog(@"deleteExtension:%@",deleteExtension);
//6.获取路径最后组成部分的扩展名
NSString *extension =[path pathExtension];
NSLog(@"extension:%@",extension);
//7.追加扩展名
NSString *appendExt = [path stringByAppendingPathExtension:@"jpg"];
NSLog(@"appendExt:%@",appendExt);
//NSString->NSData
NSString *s = @"tsdfsdfsdfsdf";
NSData *data = [s dataUsingEncoding:NSUTF8StringEncoding];
//NSData->NSString
NSString *str = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
NSLog(@"str:%@",str);
//NSMutableData 可变的Data对象,可以追加数据
3. 沙盒 & NSData & NSFileManager
(NSFileManger:文件的创建、复制、删除、剪切文件(注意:操作对象为文件,而不是文件内容))
/*___________________________________1.创建文件_____________________________________*/
/*
//获取当前app的沙盒目录
NSString *homePath = NSHomeDirectory();
//追加子路径
NSString *filePath = [homePath stringByAppendingPathComponent:@"Documents/file.text"];
//NSFileManager不能使用alloc创建,这个类设计为单例
NSFileManager *fileManager1 = [NSFileManager defaultManager];
NSFileManager *fileManager2 = [NSFileManager defaultManager];
NSLog(@"f1=%p,f2=%p",fileManager1,fileManager2); //观察地址,发现相同
//NSFileManager只能通过类方法defaultManager创建
NSFileManager *fileManager = [NSFileManager defaultManager];
NSString *string = @"自动化测试部";
//将NSString 转化为 NSData对象.
NSData *data = [string dataUsingEncoding:NSUTF8StringEncoding];
//根据路径filePath创建对应的文件,注意:只能创建文件,不能创建目录(文件夹).
BOOL success = [fileManager createFileAtPath:filePath contents:data attributes:nil];
if (success) {
NSLog(@"文件创建成功");
}else {
NSLog(@"文件创建失败");
}
//创建文件夹
NSString *filePath2 = [homePath stringByAppendingPathComponent:@"Documents/demo"];
NSError *error;
BOOL success2 = [fileManager createDirectoryAtPath:filePath2 withIntermediateDirectories:YES attributes:nil error:&error];
if (!success2) {
NSLog(@"创建失败:%@",error);
}
*/
/*___________________________________2.读取文件_____________________________________*/
/*
//获取当前app的沙盒根目录
NSString *homePath = NSHomeDirectory();
//追加子路径
NSString *filePath = [homePath stringByAppendingPathComponent:@"Documents/file.text"];
NSFileManager *fileManager = [NSFileManager defaultManager];
//根据路径读取文件中的数据
NSData *data = [fileManager contentsAtPath:filePath];
//NSData 转 NSString
NSString *string = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
NSLog(@"%@",string);
*/
/*___________________________________3.移动(前切)文件_____________________________________*/
/*
//获取当前app的沙盒根目录
NSString *homePath = NSHomeDirectory();
//源路径
NSString *filePath = [homePath stringByAppendingPathComponent:@"Documents/file.text"];
//目标路径
NSString *targetPath = [homePath stringByAppendingPathComponent:@"Documents/demo/file2.text"];
NSFileManager *fileManager = [NSFileManager defaultManager];
BOOL success = [fileManager moveItemAtPath:filePath toPath:targetPath error:nil];
if (!success) {
NSLog(@"移动失败");
}
//一个思考:怎么实现给移动至此的文件改名字?? Method:通过剪切,文件从当前目录移动至当前目录
*/
/*___________________________________4.复制文件_____________________________________*/
/*
//获取当前app的沙盒目录
NSString *hoemPath = NSHomeDirectory();
//源路径
NSString *filePath = [hoemPath stringByAppendingPathComponent:@"Documents/demo/file3.text"];
//目标路径
NSString *targetPath = [hoemPath stringByAppendingPathComponent:@"Documents/file.text"];
NSFileManager *fileManager = [NSFileManager defaultManager];
BOOL success = [fileManager copyItemAtPath:filePath toPath:targetPath error:nil];
if (!success) {
NSLog(@"复制失败");
}
*/
/*___________________________________3.删除文件_____________________________________*/
/*
//获取当前app的沙盒目录
NSString *hoemPath = NSHomeDirectory();
//源路径
NSString *filePath = [hoemPath stringByAppendingPathComponent:@"Documents/demo/file3.text"];
NSFileManager *fileManager = [NSFileManager defaultManager];
//判断文件是否存在
BOOL fileExist = [fileManager fileExistsAtPath:filePath];
if (fileExist) {
//removeItemAtPath:删除文件.
BOOL success = [fileManager removeItemAtPath:filePath error:nil];
if (success) {
NSLog(@"删除成功");
}
*/
/*___________________________________4.获取文件的属性_____________________________________*/
NSFileManager *fileManager = [NSFileManager defaultManager];
NSString *homePath = NSHomeDirectory();
//目标路径
NSString *filePath = [homePath stringByAppendingPathComponent:@"Documents/file.text"];
//获取到文件的属性
NSDictionary *fileAttr = [fileManager attributesOfItemAtPath:filePath error:nil];
NSLog(@"%@",fileAttr);
NSNumber *fileSize = [fileAttr objectForKey:NSFileSize];
long sizeValue = [fileSize longValue];
NSLog(@"文件大小:%ld",sizeValue);
//如下读取文件的大小不可取,因为将文件中的数据全都读到内存中,文件大时,太占内存了。
//NSData *data = [fileManager contentsAtPath:filePath];
//NSInteger len = data.length;
4. 读写文件 & NSFileHandle -文件内容操作
(Attention:NSFileHandle区别NSFileManager(主要对目录操作),NSFileHandle(主要对文件内容操作))
/*_______________________________NSString读、写文件__________________________________________*/
/*
//1.NSString写文件
NSString *s = @"自动化测试部门";
//文件路径
NSString *path = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/filetext"];
//将字符串写入文件
BOOL success = [s writeToFile:path atomically:YES encoding:NSUTF8StringEncoding error:nil];
if (success) {
NSLog(@"字符串写入成功");
}
//2.NSString读文件
//创建字符串时同时读取文件路径对应的文件中的内容
NSString *string = [NSString stringWithContentsOfFile:path encoding:NSUTF8StringEncoding error:nil];
NSLog(@"string=%@",string);
*/
/*_______________________________NSData读、写文件__________________________________________*/
/*
//1.NSData读文件
//文件路径
NSString *path = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/file.text"];
//创建NSData时,同时读取文件中的内容
NSData *data = [[NSData alloc] initWithContentsOfFile:path];
NSString *string = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
NSLog(@"%@",string);
//2.NSData写文件
//[data writeToFile:<#(nonnull NSString *)#> atomically:<#(BOOL)#>]
*/
/*
注意:NSArray、NSDictionary 中只能存放NSNumber、NSString、NSData、NSDate、NSArray、NSDictionary
才能成功写入文件、写入文件我们成之为“属性列表文件”
*/
/*_______________________________NSArray读、写文件__________________________________________*/
//1.NSArray写文件
/*
NSString *s1 = @"zhangsan";
NSString *s2 = @"李四";
//文件路径
NSString *path = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/array.plist"];
NSLog(@"path:%@",path);
NSArray *array = [[NSArray alloc] initWithObjects:s1,s2, nil];
BOOL success = [array writeToFile:path atomically:YES];
if (success) {
NSLog(@"写入成功");
}
*/
//数组、字典存入能存入NSNumber、NSData、NSDate、NSArray、NSDictionary以外的对象,则无法写入文件
/*
Person *p = [[Person alloc] init];
NSArray *array2 = [NSArray arrayWithObjects:p,@"demo", nil];
NSString *path = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/array2.plist"];
BOOL success2 = [array2 writeToFile:path atomically:YES];
if (!success2) {
NSLog(@"写入失败");
}
*/
/*
//2.NSArray读文件
NSString *path = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/array.plist"];
// NSString *path1 = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/Property List.plist"];
NSArray *readArray = [[NSArray alloc] initWithContentsOfFile:path];
for (NSString *s in readArray) {
NSLog(@"s = %@",s);
}
*/
/*_______________________________NSDictionary读、写文件__________________________________________*/
//1.NSDictionary写入文件
NSDictionary *dic = @{
@"name":@"jack",
@"birthday":[NSDate date],
@"age":@22
};
NSString *path = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/dic.plist"];
BOOL success = [dic writeToFile:path atomically:YES];
if (success) {
NSLog(@"写入成功");
}
//2.NSDictionary读文件
NSDictionary *readDic = [NSDictionary dictionaryWithContentsOfFile:path];
NSLog(@"readDic:%@",readDic);
5. 追加数据与定位读取
/*_____________________________________1.追加数据_____________________________________*/
/*
NSString *s = @"MLB-AE-SW";
//当前登陆用户的主目录
NSString *homePath = NSHomeDirectory();
NSString *path = [homePath stringByAppendingPathComponent:@"file.text"];
//写入文件
[s writeToFile:path atomically:YES encoding:NSUTF8StringEncoding error:nil];
*/
/*
NSString *homePath = NSHomeDirectory();
NSString *path = [homePath stringByAppendingPathComponent:@"file.text"];
//创建一个写入的NSFileHandle对象
NSFileHandle *writeHandle = [NSFileHandle fileHandleForWritingAtPath:path];
//将文件的偏移量设置到末尾,写入文件时则从末尾开始写入
[writeHandle seekToEndOfFile];
NSString *appendString = @"追加的数据";
NSData *data = [appendString dataUsingEncoding:NSUTF8StringEncoding];
//从当前偏移量开始写入数据
[writeHandle writeData:data];
//关闭文件
[writeHandle closeFile];
*/
/*_____________________________________2.定位读取_____________________________________*/
//当前登陆用户主目录
NSString *homePath = NSHomeDirectory();
NSString *path = [homePath stringByAppendingPathComponent:@"Documents/file.text"];
//通过NSFileManager获取文件大小
NSFileManager *fileManager = [NSFileManager defaultManager];
NSDictionary *fileAttr = [fileManager attributesOfItemAtPath:path error:nil];
NSNumber *fileSize = [fileAttr objectForKey:NSFileSize];
long long sizeValue = [fileSize longLongValue];
NSFileHandle *readHandle = [NSFileHandle fileHandleForReadingAtPath:path];
//将偏移量设置到中间位置
[readHandle seekToFileOffset:sizeValue/2];
//从当前偏移量读取到文件的末尾
NSData *data = [readHandle readDataToEndOfFile];
//NSData ---> NSString
NSString *string = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
NSLog(@"%@",string);
6. NSFileHandle实现复制文件的功能
NSString *homePath = NSHomeDirectory();
NSString *srcPath = [homePath stringByAppendingPathComponent:@"06 第六课 文件管理.pdf"];
//目标文件路径
NSString *targetPath = [homePath stringByAppendingPathComponent:@"Documents/06 第六课 文件管理.pdf"];
/*
注意:使用NSFileHandle只能读写译经存在的文件,不能创建文件
使用NSFileManager创建文件
*/
NSFileManager *fileManager = [NSFileManager defaultManager];
//创建目标文件
BOOL success = [fileManager createFileAtPath:targetPath contents:nil attributes:nil];
if (success) {
NSLog(@"目标文件创建成功!");
}
//创建用于读取文件的NSFileHandle对象
NSFileHandle *readHandle = [NSFileHandle fileHandleForReadingAtPath:srcPath];
//创建用于写入的NSFileHandle对象
NSFileHandle *writerHande = [NSFileHandle fileHandleForWritingAtPath:targetPath];
//从当前偏移量读到文件的末尾,偏移量默认是起始位置
//NSData *data = [readHandle readDataToEndOfFile];
//同上
NSData *data = [readHandle availableData]; //缺陷:每次读取文件全部内容(当文件很大时,程序就会crash)
//解决方式:一次读几个字节,一段一段的读.
//将数据写入目标文件
[writerHande writeData:data];
//关闭文件
[readHandle closeFile];
[writerHande closeFile];
iOS - 文件操作(File Operating)的更多相关文章
- IOS文件操作的两种方式:NSFileManager操作和流操作
1.常见的NSFileManager文件方法 -(NSData *)contentsAtPath:path //从一个文件读取数据 -(BOOL)createFileAtPath: path cont ...
- JAVASE02-Unit06: 文件操作——File 、 文件操作—— RandomAccessFile
Unit06: 文件操作--File . 文件操作-- RandomAccessFile java.io.FileFile的每一个实例是用来表示文件系统中的一个文件或目录 package day06; ...
- iOS——文件操作NSFileManager (创建、删除,复制,粘贴)
iOS——文件操作NSFileManager (创建.删除,复制,粘贴) iOS的沙盒机制,应用只能访问自己应用目录下的文件.iOS不像android,没有SD卡概念,不能直接访问图像.视 ...
- c#中@标志的作用 C#通过序列化实现深表复制 细说并发编程-TPL 大数据量下DataTable To List效率对比 【转载】C#工具类:实现文件操作File的工具类 异步多线程 Async .net 多线程 Thread ThreadPool Task .Net 反射学习
c#中@标志的作用 参考微软官方文档-特殊字符@,地址 https://docs.microsoft.com/zh-cn/dotnet/csharp/language-reference/toke ...
- python的文件操作file:(内置函数,如seek、truncate函数)
file打开文件有两种方式,函数用file()或者open().打开后读入文件的内容用read()函数,其读入是从文件当前指针位置开始,所以需要控制指针位置用: 一.先介绍下file读入的控制函数: ...
- 【转载】C#工具类:实现文件操作File的工具类
在应用程序的开发中,文件操作的使用基本上是必不可少的,FileStream类.StreamWriter类.Directory类.DirectoryInfo类等都是文件操作中时常涉及到的类,我们可以通过 ...
- PythonStudy——文件操作 File operation
# 文件:就是硬盘的一块存储空间 # 1.使用文件的三步骤: # 打开文件- 得到文件对象:找到数据存放在硬盘的位置,让操作系统持有该空间,具有操作权# 硬盘空间 被 操作系统持有# 文件对象f 被 ...
- 文件操作(FILE)与常用文件操作函数
文件 1.文件基本概念 C程序把文件分为ASCII文件和二进制文件,ASCII文件又称文本文件,二进制文件和文本文件(也称ASCII码文件)二进制文件中,数值型数据是以二进制形式存储的, 而在文本文件 ...
- Java 文件操作-File
1.File文件操作 java.io.File用于表示文件(目录),也就是说程序员可以通过File类在程序中操作硬盘上的文件和目录.File类只用于表示文件(目录)的信息(名称.大小等),不能对文件的 ...
随机推荐
- BaiduMap开发,获取公交站点信息。
可能有些人会出现无法导入overlayutil的错误,这是因为BaiduMap里面的包把这部分删除掉了,并且官方没有给出说明,这个地方以前也是让我折腾了很久. 不知道现在有没有说明这个问题,如果需要这 ...
- 关于Struts2的客户端校验的FreeMarker template error!
把<s:form action="login" namespace="/" validate="true" >改为 <s: ...
- 序列化对象C++对象的JSON序列化与反序列化探索
新手发帖,很多方面都是刚入门,有错误的地方请大家见谅,欢迎批评指正 一:背景 作为一名C++开发人员,我始终很期待能够像C#与JAVA那样,可以省力的进行对象的序列化与反序列化,但到现在为止,还没有找 ...
- cocos2dx 3.0 触摸机制
在cocos2dx 3.0版本号中,废弃了以往2.x版本号的写法,我们先来看一下Layer.h中的一段代码 /* Callback function should not be deprecated, ...
- 关于MVC中DropDownListFor的一个bug
如以下代码: //后台 代码 ViewData["source_type"] = new List<SelectListItem> { "}, "} ...
- Codeforces Round #328 (Div. 2) D. Super M 虚树直径
D. Super M Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/592/problem/D ...
- Fedora 下 安装 chrome
一.下载安装包,安装 1.去google 下载安装包 2.终端下 运行命令: rpm -ivh google-chrome-stable_current_i386.rpm 3. 出现如下 ...
- ABAP屏幕基础
Select语句的使用 关键字into后可以加 structure(结构体), internal table(内表) 和 fieldlist(字段列表) Authority 权限 程序员可以根据权限对 ...
- MySQL · 引擎特性 · InnoDB 事务子系统介绍
http://mysql.taobao.org/monthly/2015/12/01/ 前言 在前面几期关于 InnoDB Redo 和 Undo 实现的铺垫后,本节我们从上层的角度来阐述 InnoD ...
- 错误解决:release' is unavailable: not available in automatic reference counting mode
解决办法: You need to turn off Automatic Reference Counting. You do this by clicking on your project in ...