UI进阶 文件管理器(NSFileManager)文件对接器(NSFileHandle)

时间:2021-08-27 09:51:14

一、文件管理器与文件连接器之间的区别

文件管理器(NSFileManager)

此类主要是对文件进行的操作(创建/删除/改名等)以及文件信息的获取。

文件连接器(NSFileHandle)

此类主要是对文件内容进行读取和写入操作。

二、文件管理器(NSFileManager)

UI进阶 文件管理器(NSFileManager)文件对接器(NSFileHandle)

UI进阶 文件管理器(NSFileManager)文件对接器(NSFileHandle)

1、创建文件夹管理器

 NSFileManager *fileManager = [NSFileManager defaultManager];

2、创建文件并写入数据

     // 创建文件夹管理器
NSFileManager *fileManager = [NSFileManager defaultManager];
// 创建路径
NSString *homePath = NSHomeDirectory();
homePath = [homePath stringByAppendingPathComponent:@"string.txt"];
// 初始化一个字符串
7 NSString *string = @"创建一个文件并写入数据";
// 创建文件string.txt 并向stirng.txt中添加数据
// 参数1:文件路径
// 参数2:NSData类型
// 参数3:参数
BOOL result = [fileManager createFileAtPath:homePath contents:[string dataUsingEncoding:NSUTF8StringEncoding] attributes:nil];
if (result) {
NSLog(@"成功 %@", homePath);
} else {
NSLog(@"失败");
}

3、从一个文件中读取数据

     // 创建文件夹管理器
NSFileManager *fileManager = [NSFileManager defaultManager];
// 创建路径
NSString *homePath = NSHomeDirectory();
homePath = [homePath stringByAppendingPathComponent:@"string.txt"];
// 从string.txt中获取数据
NSData *data = [fileManager contentsAtPath:homePath];
// 将NSData类型的数据转换成NSString类型的数据,并输出
NSString *string = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
NSLog(@"string %@", string);

4、文件的移动

     // 创建文件夹管理器
NSFileManager *fileManager = [NSFileManager defaultManager];
// 创建路径
NSString *homePath = NSHomeDirectory();
NSString *filePath = [homePath stringByAppendingPathComponent:@"string.txt"];
// 创建toPath
NSString *toPath = [homePath stringByAppendingPathComponent:@"test.txt"];
// 将string.txt中的数据移动到test.txt中,并将string.txt删除
BOOL result = [fileManager moveItemAtPath:filePath toPath:toPath error:nil];
if (result) {
NSLog(@"成功 %@", toPath);
} else {
NSLog(@"失败");
}

5、文件的复制

     // 创建文件夹管理器
NSFileManager *fileManager = [NSFileManager defaultManager];
// 创建路径
NSString *homePath = NSHomeDirectory();
NSString *filePath = [homePath stringByAppendingPathComponent:@"test.txt"];
// 创建toPath
NSString *toPath = [homePath stringByAppendingPathComponent:@"copy.txt"];
// 将test.txt中的数据复制到copy.txt中,保留test.txt文件
BOOL result = [fileManager copyItemAtPath:filePath toPath:toPath error:nil];
if (result) {
NSLog(@"成功 %@", toPath);
} else {
NSLog(@"失败");
}

6、比较两个文件的内容是否一样

     // 创建文件夹管理器
NSFileManager *fileManager = [NSFileManager defaultManager];
// 创建路径
NSString *homePath = NSHomeDirectory();
NSString *filePath = [homePath stringByAppendingPathComponent:@"test.txt"];
// 创建toPath
NSString *toPath = [homePath stringByAppendingPathComponent:@"copy.txt"];
// 比较两个文件的内容是否一致
BOOL result = [fileManager contentsEqualAtPath:filePath andPath:toPath];
if (result) {
NSLog(@"内容一致");
} else {
NSLog(@"内容不一致");
}

7、判断文件是否存在

     // 创建文件夹管理器
NSFileManager *fileManager = [NSFileManager defaultManager];
// 创建路径
NSString *homePath = NSHomeDirectory();
NSString *filePath = [homePath stringByAppendingPathComponent:@"test.txt"];
// 判断文件是否存在
BOOL result = [fileManager fileExistsAtPath:filePath];
if (result) {
NSLog(@"文件存在");
} else {
NSLog(@"文件不存在");
}

8、移除文件

     // 创建文件夹管理器
NSFileManager *fileManager = [NSFileManager defaultManager];
// 创建路径
NSString *homePath = NSHomeDirectory();
NSString *filePath = [homePath stringByAppendingPathComponent:@"test.txt"];
// 移除文件
BOOL result = [fileManager removeItemAtPath:filePath error:nil];
if (result) {
NSLog(@"移除成功");
} else {
NSLog(@"移除失败");
}

9、创建文件夹

1、根据给定的文件夹路径创建

     // 创建文件夹管理器
NSFileManager *fileManager = [NSFileManager defaultManager];
// 创建路径
NSString *homePath = NSHomeDirectory();
NSString *filePath = [homePath stringByAppendingPathComponent:@"test1/test2"];
// 创建文件夹
BOOL result = [fileManager createDirectoryAtPath:filePath withIntermediateDirectories:YES attributes:nil error:nil];
if (result) {
NSLog(@"创建成功");
} else {
NSLog(@"创建失败");
}

2、根据给定的文件路径,创建其所在文件夹

     // 创建文件夹管理器
NSFileManager *fileManager = [NSFileManager defaultManager];
// 创建路径
NSString *homePath = NSHomeDirectory();
NSString *filePath = [homePath stringByAppendingPathComponent:@"test3/test4/hello.txt"];
// 创建文件夹test4
// stringByDeletingLastPathComponent 删除路径最后一个/以及后面的内容
BOOL result = [fileManager createDirectoryAtPath:[filePath stringByDeletingLastPathComponent] withIntermediateDirectories:YES attributes:nil error:nil];
if (result) {
NSLog(@"创建成功");
} else {
NSLog(@"创建失败");
}

三、文件连接器(NSFileHandle)

NSFileHandle是非常基础的只针对文件内容的操作(写入,读取,更新),是把NSData通过连接器一个字节一个字节的写入/读取文件.(NSData <—> NSFileHandle <—> 文件).

使用场景:
    对文件内容的进行局部修改、追加内容。

使用步骤
    1).文件对接并获取一个NSFileHandle对象.
    2).读写操作
    3).关闭对接

注意:NSFileHandle类并没有提供创建文件的功能。必须使用NSFileManager方法来创建文件。因此,在使用下表中的方法时,都是保证文件已经存在,否则返回nil.

UI进阶 文件管理器(NSFileManager)文件对接器(NSFileHandle)

UI进阶 文件管理器(NSFileManager)文件对接器(NSFileHandle)

1、读取数据

1、读取文件中的全部数据

     // string.txt已经存在,获取其路径
NSString *filePath = [NSHomeDirectory() stringByAppendingPathComponent:@"string.txt"];
// 创建文件连接器,并打开一个文件准备读取
NSFileHandle *handle = [NSFileHandle fileHandleForReadingAtPath:filePath];
// 从string.txt中读取全部数据
NSData *data = [handle availableData];
NSString *string = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
NSLog(@"string %@", string);
// 关闭文件连接器
[handle closeFile];

2、从指定位置读取到文件末尾

注意,当文件中的数据是汉字时,因为utf-8的中文字符是占三个字节,所以偏移量必须是3的倍数,否则读取不到数据

     // string.txt已经存在,获取其路径
NSString *filePath = [NSHomeDirectory() stringByAppendingPathComponent:@"string.txt"];
// 创建文件连接器,并打开一个文件准备读取
NSFileHandle *handle = [NSFileHandle fileHandleForReadingAtPath:filePath];
// 获取stirng.txt中数据字节数
NSUInteger length = [[handle availableData] length];
// 偏移量为文件的一半
[handle seekToFileOffset:length/2.0];
// 获取当前文件的偏移量
NSLog(@"%llu", [handle offsetInFile]);
// 从数据的一半位置开始读取,读取到文件末尾
NSData *data = [handle readDataToEndOfFile];
NSString *string = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
NSLog(@"string %@", string);
[handle closeFile];

3、从指定位置读取指定长度的数据

     // string.txt已经存在,获取其路径
NSString *filePath = [NSHomeDirectory() stringByAppendingPathComponent:@"string.txt"];
// 创建文件连接器,并打开一个文件准备读取
NSFileHandle *handle = [NSFileHandle fileHandleForReadingAtPath:filePath];
// 获取stirng.txt中数据长度
NSUInteger length = [[handle availableData] length];
// 偏移量为文件的一半
[handle seekToFileOffset:length/2.0];
// 从数据的一半位置开始读取,读取3个字节
NSData *data = [handle readDataOfLength:];
NSString *string = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
NSLog(@"string %@", string);
[handle closeFile];

2、截取文件为指定长度

     // string.txt已经存在,获取其路径
NSString *filePath = [NSHomeDirectory() stringByAppendingPathComponent:@"string.txt"];
// 创建文件连接器,并打开一个文件写入读取
NSFileHandle *handle = [NSFileHandle fileHandleForWritingAtPath:filePath];
// 将文件的长度设置为21字节
[handle truncateFileAtOffset:];
[handle closeFile];

3、在文件的指定位置拼接数据

     // string.txt已经存在,获取其路径
NSString *filePath = [NSHomeDirectory() stringByAppendingPathComponent:@"string.txt"];
// 创建文件连接器,并打开一个文件写入(或更新)读取
NSFileHandle *handle = [NSFileHandle fileHandleForWritingAtPath:filePath];
// 搜索到文件内容末尾
[handle seekToEndOfFile];
NSString *appendStr = @" world";
// 在文件的末尾拼接字符串
[handle writeData:[appendStr dataUsingEncoding:NSUTF8StringEncoding]];
[handle closeFile];