我要為不用用戶賬號創建不同的文件夾,在用戶的文件夾裡還要存儲圖片。但是不知道該如何實現?謝謝~
在你的應用裡創建directory:
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *folderPath = [documentsDirectory stringByAppendingPathComponent:@"UniqueUserAccount"];
if (![[NSFileManager defaultManager] fileExistsAtPath:folderPath])
[[NSFileManager defaultManager] createDirectoryAtPath:folderPath withIntermediateDirectories:NO attributes:nil error:&error];
保存NSMutableArray,如果不明白可以百度相關說明
folderPath = [folderPath stringByAppendingPathComponent:@"array.out"];
[yourArray writeToFile:folderPath atomically:YES];
讀取數組:
NSArray *arrayFromFile = [NSArray arrayWithContentsOfFile:folderPath];
NSLog(@"%@",arrayFromFile);
如果要保存圖片的話:
for(int i = 0;i < [arrImages count];i++)
{
folderPath = [folderPath stringByAppendingPathComponent:[NSString stringWithFormat:@"Images%d",i]];
NSMutableString *imgPath;
imgPath=[[NSMutableString alloc] initWithString: [[NSBundle mainBundle] resourcePath]];
[imgPath stringByAppendingPathComponent:[arrImages objectAtIndex:i]];
NSData *imageData = [NSData dataWithContentsOfFile:imgPath];
NSData *imageData = UIImagePNGRepresentation([arrImages objectAtIndex:i])
[imageData writeToFile:folderPath atomically:YES];
}