1、文件的创建-(IBAction) CreateFile{//对于错误信息NSError *error;//创建文件管理器NSFileManager *fileMgr = [NSFileManager defaultManager];//指向文件目录NSString *documentsDirec...
分类:
移动开发 时间:
2015-12-03 00:08:39
阅读次数:
257
iOS应用程序只能在为该改程序创建的文件中读取文件,不可以去其它地方访问,此区域被成为沙盒,所以所有的非代码文件都要保存在此,例如图像,图标,声音,映像,属性列表,文本文件等。 默认情况下,每个沙盒含有3个文件夹:Documents, Library 和 tmp,因为应用的沙盒机制,应用只能在几个目...
分类:
其他好文 时间:
2015-11-28 16:24:01
阅读次数:
185
NSFileManager *fileManager = [NSFileManager defaultManager]; NSArray *homePath = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomain....
分类:
移动开发 时间:
2015-11-27 20:02:25
阅读次数:
243
//// ViewController.m// 沙盒操作//// Created by mncong on 15/11/26.// Copyright © 2015年 mancong. All rights reserved.//#import "ViewController.h"@interfac...
分类:
移动开发 时间:
2015-11-27 19:19:55
阅读次数:
219
@interface NSFileManager : NSObjectNSFileManager操作:1.文件夹创建删除2.文件创建删除3.清除数据缓存以上办法都在这里:https://developer.apple.com/library/mac/documentation/FileManagem...
分类:
其他好文 时间:
2015-11-18 16:14:24
阅读次数:
144
转自:http://blog.csdn.net/ios_che/article/details/7287266iPhone文件系统NSFileManager讲解是本文要介绍的内容,主要是通过iphone文件系统来学习NSFileManager的使用方法,具体内容来看本文详解。iPhone文件系统:创...
分类:
移动开发 时间:
2015-11-13 14:36:55
阅读次数:
291
------Java培训、Android培训、iOS培训、.Net培训、期待与您交流! -------/*NSFileManager用法深入一用于文件访问:获取文件、文件夹的属性和子目录的信息*/ 1 #import 2 3 int main() { 4 @autoreleasepo...
分类:
其他好文 时间:
2015-11-10 17:37:19
阅读次数:
329
清除缓存#pragma mark 计算单个文件- (float)fileSizeAtPath:(NSString*)path{NSFileManager*fileManager =[NSFileManager defaultManager];if ([fileManager fileExistsAt...
分类:
其他好文 时间:
2015-11-09 15:47:48
阅读次数:
219
iOS对于XML的解析有系统自带的SDK--NSXMLParser,鄙人愚拙,只会用GDataXML进行解析,这里仅介绍GData的使用。(以下图为例)1.对于一个xml文件,先读取出来NSData *xmlData = [[NSFileManager defaultManager]contents...
分类:
移动开发 时间:
2015-11-07 12:02:31
阅读次数:
399
1、常见的NSFileManager文件方法-(NSData *)contentsAtPath:path //从一个文件读取数据-(BOOL)createFileAtPath: path contents:(NSData *)data attributes:attr //向一个文件写入数据-(B.....
分类:
其他好文 时间:
2015-11-05 22:08:31
阅读次数:
174