1.文件系统
我们的应用程序会安装到自己的沙盒中,访问沙盒目录的方法: NSHomeDirectory()。
#define DOCUMENT_FOLDER [NSHomeDirectory() stringByAppendingPathComponent:@"Documents"]
用NSString的stringByAppendingPathComponent方法会自动的在中间插入一“/”。
NSString *backDbPath = [[NSBundle mainBundle]pathForResource:DATABASE_FILE_NAME
ofType:DATABASE_RESOURCE_TYPE];
运用上面的方法,我们可以从应用程序安装包中获取相关文件的绝对路径。
2.文件操作
1) if ([[NSFileManager defaultManager] fileExistsAtPath:TMPDOWNLOADPIC_FOLDER]) {
[[NSFileManager defaultManager] removeItemAtPath:TMPDOWNLOADPIC_FOLDER error:nil];
}
[[NSFileManager defaultManager] createDirectoryAtPath:TMPDOWNLOADPIC_FOLDER withIntermediateDirectories:YES attributes:nil error:nil];
上述代码可以从字面上读懂,文件路径存在则移除,之后再创建新的文件夹。
if (nil == urlstring) {
return nil;
}
NSString *pngPath = [TMPDOWNLOADPIC_FOLDER stringByAppendingPathComponent:[urlstring lastPathComponent]];
if (![[NSFileManager defaultManager]fileExistsAtPath:pngPath])
{
ServerInfo* server = [iBabyPubFunction GetServer];
NSString* str = [NSString stringWithFormat:@"http://%@:%d/%@", server.strIP,88,urlstring];
NSLog(@"the urlstr is %@",str);
img = [UIImage imageWithData:[NSData dataWithContentsOfURL:
[NSURL URLWithString:str]]];
[UIImagePNGRepresentation(img) writeToFile:pngPath atomically:YES];
}
else {
img = [UIImage imageWithContentsOfFile:pngPath];
}
return img;
上述代码是一个常用的获取图片的方法,用同步方法从网络上获取图片,成功后保存到本地供下次使用。
3)文件改名
[[NSFileManager defaultManager] moveItemAtPath:filePath toPath:filePath2 error:&error];
4)获取url的尾节点路径,加到下载文件夹后面,作为文件的最终路径
NSString *pngPath = [K_DOWNLOADPIC_FOLDER stringByAppendingPathComponent:[newURL lastPathComponent]];