IOS获得各种文档文件夹路径的方法
iphone沙箱模型的有四個(gè)目錄,各自是什么,永久數(shù)據(jù)存儲(chǔ)一般放在什么位置。得到模擬器的路徑的簡(jiǎn)單方式是什么.
documents,tmp。app,Library。
(NSHomeDirectory())。
手動(dòng)保存的文件在documents文件中
Nsuserdefaults保存的文件在tmp目錄里
1、Documents 文件夾:您應(yīng)該將全部de應(yīng)用程序數(shù)據(jù)文件寫入到這個(gè)文件夾下。
這個(gè)文件夾用于存儲(chǔ)用戶數(shù)據(jù)或其他應(yīng)該定期備份的信息。
2、AppName.app 文件夾:這是應(yīng)用程序的程序包文件夾。包括應(yīng)用程序的本身。因?yàn)閼?yīng)用程序必須經(jīng)過簽名,所以您在執(zhí)行時(shí)不能對(duì)這個(gè)文件夾中的內(nèi)容進(jìn)行改動(dòng)。否則可能會(huì)使應(yīng)用程序無法啟動(dòng)。
3、Library 文件夾:這個(gè)文件夾下有兩個(gè)子文件夾:Caches 和 Preferences
Preferences 文件夾:包括應(yīng)用程序的偏好設(shè)置文件。
您不應(yīng)該直接創(chuàng)建偏好設(shè)置文件,而是應(yīng)該使用NSUserDefaults類來取得和設(shè)置應(yīng)用程序的偏好.
Caches 文件夾:用于存放應(yīng)用程序?qū)S玫闹С治募4鎽?yīng)用程序再次啟動(dòng)過程中須要的信息。
4、tmp 文件夾:這個(gè)文件夾用于存放暫時(shí)文件,保存應(yīng)用程序再次啟動(dòng)過程中不須要的信息。
獲取這些文件夾路徑的方法:
1,獲取家文件夾路徑的函數(shù):
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,獲取應(yīng)用程序程序包中資源文件路徑的方法:
比如獲取程序包中一個(gè)圖片資源(apple.png)路徑的方法:
NSString *imagePath = [[NSBundle mainBundle] pathForResource:@”apple” ofType:@”png”];
UIImage *appleImage = [[UIImage alloc] initWithContentsOfFile:imagePath];
代碼中的mainBundle類方法用于返回一個(gè)代表應(yīng)用程序包的對(duì)象。
iphone沙盒(sandbox)中的幾個(gè)文件夾獲取方式:
[cpp]view
plaincopy
//獲取沙盒主文件夾路徑
NSString*homeDir=NSHomeDirectory();
//獲取Documents文件夾路徑
NSArray*paths=NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES);
NSString*docDir=[pathsobjectAtIndex:0];
//獲取Caches文件夾路徑
NSArray*paths=NSSearchPathForDirectoriesInDomains(NSCachesDirectory,NSUserDomainMask,YES);
NSString*cachesDir=[pathsobjectAtIndex:0];
//獲取tmp文件夾路徑
NSString*tmpDir=NSTemporaryDirectory();
[cpp]view
plaincopy
//獲取當(dāng)前程序包中一個(gè)圖片資源(apple.png)路徑
NSString*imagePath=[[NSBundlemainBundle]pathForResource:@"apple"ofType:@"png"];
UIImage*appleImage=[[UIImagealloc]initWithContentsOfFile:imagePath];
樣例:
NSFileManager* fm=[NSFileManager defaultManager];
if(![fm fileExistsAtPath:[self dataFilePath]]){
//以下是對(duì)該文件進(jìn)行制定路徑的保存
[fm createDirectoryAtPath:[self dataFilePath] withIntermediateDirectories:YES attributes:nil error:nil];
//取得一個(gè)文件夾下得全部文件名稱
NSArray *files = [fm subpathsAtPath: [self dataFilePath] ];
//讀取某個(gè)文件
NSData *data = [fm contentsAtPath:[self dataFilePath]];
//或者
NSData *data = [NSData dataWithContentOfPath:[self dataFilePath]];
}
版權(quán)聲明:本文博客原創(chuàng)文章,博客,未經(jīng)同意,不得轉(zhuǎn)載。
總結(jié)
以上是生活随笔為你收集整理的IOS获得各种文档文件夹路径的方法的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 训练效果未及预期,31名ChatGPT训
- 下一篇: 帝国时代国家的崛起秘籍大全及使用方法