码迷,mamicode.com
首页 >  
搜索关键字:nshomedirectory    ( 127个结果
Document
1 // 在Documents目录下创建一个名为LaunchImage的文件夹 2 NSString *path = [[NSHomeDirectory() stringByAppendingPathComponent:@"Documents"] stringByAppending...
分类:其他好文   时间:2014-11-04 16:49:31    阅读次数:149
(转)IOS中获取各种文件的目录路径的方法
原出处不详,有原作者看到的话,请联系我添加源地址链接:)iphone沙箱模型的有四个文件夹,分别是什么,永久数据存储一般放在什么位置,得到模拟器的路径的简单方式是什么.documents,tmp,app,Library。(NSHomeDirectory()),手动保存的文件在documents文件里...
分类:移动开发   时间:2014-10-30 20:35:40    阅读次数:158
IOS在Document目录下创建文件夹、保存、读取、以及删除文件
1 // 在Documents目录下创建一个名为LaunchImage的文件夹 2 NSString *path = [[NSHomeDirectory() stringByAppendingPathComponent:@"Documents"] stringByAppendin...
分类:移动开发   时间:2014-10-28 21:12:41    阅读次数:188
NSPathUtilities.h常用路径工具、函数和方法
分类:网络安全/工具使用/文章常用路径工具函数NSString*NSUserName(void)返回当前用户的登录名NSString*NSFullUserName(void)返回当前用户的完整用户名NSString*NSHomeDirectory(void)返回当前用户主目录的路径NSString*...
分类:其他好文   时间:2014-10-24 12:53:00    阅读次数:168
IOS中获取各种文件的目录路径的方法
phone沙箱模型的有四个文件夹,分别是什么,永久数据存储一般放在什么位置,得到模拟器的路径的简单方式是什么.documents,tmp,app,Library。(NSHomeDirectory()),手动保存的文件在documents文件里Nsuserdefaults保存的文件在tmp文件夹里1、Documents目录:您应该将所有de..
分类:移动开发   时间:2014-10-23 07:02:58    阅读次数:173
存取文件
//获取Documents目录 NSString *home=NSHomeDirectory(); NSLog(@"%@",home); NSString *documents=[home stringByAppendingPathComponent:@"Documents/text.txt...
分类:其他好文   时间:2014-10-18 22:15:02    阅读次数:142
ios文件操作
IOS访问沙盒目录API获取程序目录 NSString *homePath = NSHomeDirectory();~/Library/Application Support/iPhone Simulator/7.1/Applications/66095245-FD69-40D5-B3F5-959....
分类:移动开发   时间:2014-09-28 17:52:43    阅读次数:191
iOS 快速获取沙盒下任意文件夹的路径
NSLog(@"%@", NSHomeDirectory());//沙盒主目录 NSLog(@"%@", NSTemporaryDirectory());//沙盒中tmp文件夹的路径 NSLog(@"%@", [[NSBundle mainBundle] bundlePath]);//沙盒中*.app包的路径 NSLog(@"%@", [NSSearchPathForDir...
分类:移动开发   时间:2014-09-19 21:13:26    阅读次数:226
IOS开发-文件管理(二)
五、Plist文件String方式添加NSString *path=[NSHomeDirectory() stringByAppendingPathComponent:@"Array.plist"];NSString *content=@"abcd";[contect writeToFile:pat...
分类:移动开发   时间:2014-09-17 11:33:32    阅读次数:258
登录记住账号和密码小Demo
读取 1 // 1.读取沙盒中plist文件 2 3 // 1.1.获得沙盒根路径 4 5 NSString *home = NSHomeDirectory(); 6 7 // 1.2.拼接Documents路径 8 9 NSString *docPath ...
分类:其他好文   时间:2014-09-09 15:19:08    阅读次数:172
127条   上一页 1 ... 9 10 11 12 13 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!