目录创建:
NSString * imagesPaths = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/images/"];
if (![[NSFileManager defaultManager] fileExistsAtPath:imagesPaths]) {
[[NSFileManager defaultManager] createDirectoryAtPath:imagesPaths withIntermediateDirectories:YES attributes:nil error:nil];
} else {
NSLog(@"imagesPaths is Exists.");
}
文件写入,通常情况下,很多人应该都直接使用一句代码就完成写入文件的功能:
BOOL ret = [[NSFileManager defaultManager] createFileAtPath:paths contents:bigImgData attributes:nil];
但是最近在做项目的时候,发现使用socket传输文件过程中,这种写入方法贼慢,后来找到了一种更快的写入方式,比上面一种快个应该有5到10倍的速度。
//先定义一个NSFileHandle
@property (nonatomic,strong) NSFileHandle * writeHandle;
//写入方法
BOOL ret = [[NSFileManager defaultManager] createFileAtPath:paths contents:nil attributes:nil];
self.writeHandle = [NSFileHandle fileHandleForWritingAtPath:paths];
[self.writeHandle writeData:bigImgData];
if (ret) {
NSLog(@"%@ 写入成功",fbigPath);
}
else {
NSLog(@"%@ 写入失败", fbigPath);
}
这种写法在socket传输中,传过来的速度和写入速度基本一致。
网友评论