你好,歡迎來到IOS教程網

 Ios教程網 >> IOS使用技巧 >> IOS7技巧 >> Ios中獲取文件路徑的4種方法

Ios中獲取文件路徑的4種方法

編輯:IOS7技巧
本文章來給IOS開發者介紹在Ios中獲取文件路徑的4種方法,各位有需要了解的朋友可進入參考。  代碼如下 復制代碼

 

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask,

YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *writableDBPath = [documentsDirectory stringByAppendingPathComponent:filename];   

#define ABS_FILE_PATH(FILE_NAME) [NSString stringWithFormat:@"%@/Documents/%@",

NSHomeDirectory(),FILE_NAME]

//獲取程序application package目錄下的文件路徑:
#define PACKAGE_FILE_PATH(FILE_NAME) [[[NSBundle mainBundle] resourcePath]

stringByAppendingPathComponent:FILE_NAME]

NSString* filePath = [[NSBundle mainBundle] pathForResource:@"fileName" ofType:@"fileType

(txt...html..)"];

  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved