NSString* fileContents = [NSString stringWithContentsOfFile:fileRoot encoding:NSUTF8StringEncoding error:nil]
NSArray *s = [fileContents componentsSeparatedByCharactersInSet:[NSCharacterSet newlineCharacterSet]]
NSString *home = NSHomeDirectory()//获取沙盒路径//拼接Documents路径//NSString *docPath = [home stringByAppendingStringt:@"/Documents"]NSString *docPath = [home stringByAppendingPathComponent:@"Documents"]NSString *filePath = [docPath stringByAppendingPathComponent:@"data.plist"]NSArray *array = @[@1,@2,@"123"]//只有具备writeToFile的对象才能使用plist存储,NSArray[array writeToFile:filePath atomically:YES]主要是获取路径,然后把文件写到这个路径里就好了NSArray *array = [[NSBundle mainBundle] pathsForResourcesOfType:@"jpg" inDirectory:@"image"]NSLog(@"array:%@",array)
首先需要在mac上新建一个文件夹叫image, 放一些图片进去,然后把整个文件夹拖到项目中,在d出的对话框中选择:Create folder references for any added folders ,这个会创建一个真实的目录,否则找到不这个目录下的文件
家目录下共有四个子目录:
Documents 目录:您应该将所有的应用程序数据文件写入到这个目录下。这个目录用于存储用户数据或其它应该定期备份的信息。
AppName.app 目录:这是应用程序的程序包目录,包含应用程序的本身。由于应用程序必须经过签名,所以您在运行时不能对这个目录中的内容进行修改,否则可能会使应用程序无法启动。
Library 目录:这个目录下有两个子目录:Caches 和 Preferences
Preferences 目录包含应用程序的偏好设置文件。您不应该直接创建偏好设置文件,而是应该使用NSUserDefaults类来取得和设置应用程序的偏好
Caches 目录用于存放应用程序专用的支持文件,保存应用程序再次启动过程中需要的信息。
tmp 目录:这个目录用于存放临时文件,保存应用程序再次启动过程中不需要的信息。
获取这些目录路径的方法:
1,获取家目录路径的函数:
NSString *homeDir = NSHomeDirectory()
2,获取Documents目录路径的方法:
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)
NSString *docDir = [paths objectAtIndex:0]
3,获取Caches目录路径的方法:
NSArray*paths=NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES)
NSString *cachesDir = [paths objectAtIndex:0]
4,获取tmp目录路径的方法:
NSString *tmpDir = NSTemporaryDirectory()
5,获取应用程序程序包中资源文件路径的方法:
例如获取程序包中一个图片资源(apple.png)路径的方法:
NSString *imagePath = [[NSBundle mainBundle] pathForResource:@”apple” ofType:@”png”]
UIImage *appleImage = [[UIImage alloc] initWithContentsOfFile:imagePath]
代码中的mainBundle类方法用于返回一个代表应用程序包的对象。
文件IO
1,将数据写到Documents目录:
- (BOOL)writeApplicationData:(NSData *)data toFile:(NSString *)fileName {
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)
NSString *docDir = [paths objectAtIndex:0]if (!docDir) { NSLog(@”Documents directory not found!”)return NO}
NSString *filePath = [docDir stringByAppendingPathComponent:fileName]
return [data writeToFile:filePath atomically:YES]}
2,从Documents目录读取数据:
- (NSData *)applicationDataFromFile:(NSString *)fileName {
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)
NSString *docDir = [paths objectAtIndex:0]
NSString *filePath = [docDir stringByAppendingPathComponent:fileName]
NSData *data = [[[NSData alloc] initWithContentsOfFile:filePath] autorelease]return data}
NSSearchPathForDirectoriesInDomains这个主要就是返回一个绝对路径用来存放我们需要储存的文件。
- (NSString *)dataFilePath {
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)
NSString *documentsDirectory = [paths objectAtIndex:0]
return [documentsDirectory stringByAppendingPathComponent:@"shoppingCar.plist"]
}
NSFileManager* fm=[NSFileManager defaultManager]
if(![fm fileExistsAtPath:[self dataFilePath]]){
//下面是对该文件进行制定路径的保存
[fm createDirectoryAtPath:[self dataFilePath] withIntermediateDirectories:YES attributes:nil error:nil]
//取得一个目录下得所有文件名
NSArray *files = [fm subpathsAtPath: [self dataFilePath] ]
//读取某个文件
NSData *data = [fm contentsAtPath:[self dataFilePath]]
//或者
NSData *data = [NSData dataWithContentOfPath:[self dataFilePath]]
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)