
文件管理类NSFileManager类:对文件进行创建、复制、重命名、删除等,一般不对文件内容进行操作。
NSData类和NSMutableData类:相当于数据缓冲区
NSFileManager是一个单例类,可以通过defalutManager类方法创建
+ (NSFileManager *)defaultManager;//通过这个方法创建的对象始终是同一个
一些文件操作的概念:
-当前目录:.
-上级目录:..
-根目录:/
-home目录:~
-绝对路径:从根目录开始的路经
-相对路径:从当前目录开始的路径
方法 | 描述 |
---|---|
-(NSData ) contentsAtPath: *path | 从一个文件读取数据 |
-(BOOL) createFileAtPath: path contents: (NSData ) *data attributes: attr | 向一个文件写入数据 |
-(`BOOL) removeItemAtPath: path error: err | 删除一个文件 |
-(BOOL) moveItemAtPath: from toPath: to error: err | 重命名或移动一个文件(to不能是已存在的) |
-(BOOL) copyItemAtPath: from toPath: to error: err | 复制一个文件(to不能是已存在的) |
-(BOOL) contentsEqualAtPath: path1 andPath: path2 | 比较这两个文件的内容 |
-(BOOL) fileExistsAtPath: path | 测试文件是否存在 |
-(BOOL) isReadableFileAtPath: path | 测试文件是否存在且是可读文件 |
-(BOOL) isWritableFileAtPath: path | 测试文件是否存在且是可写文件 |
-(NSDictionary ) attributesOfItemAtPath: *path error: err | 获取文件的属性 |
-(BOOL) setAttributesOfItemAtPath: attr error: err | 更改文件的属性 |
—————-目录—————- | —————目录—————- |
-(NSString *) currentDirectoryPath | 获取当前目录 |
-(BOOL) changeCurrentDirectoryPath: path | 更改当前目录 |
-(BOOL) copyItemAtPath: from toPath: to error: err | 复制目录结构(to不能是已存在的) |
-(BOOL) createDirectoryAtPath: path withIntermediateDirectories: (BOOL) flag attributes: attr | 创建一个新目录 |
-(NSArray ) contentsOfDirectoryAtPath: *path error: err | 列出目录内容 |
-(NSDirectoryEnumerator ) enumeratorAtPath: *path | 枚举目录的内容 |
-(BOOL) removeItemAtPath: path error: err | 删除空目录 |
-(BOOL) moveItemAtPath: from toPath: to error: err | 重命名或移动一个目录(to不能是已存在的) |
1、 创建NSFileManager对象,其实都是同一个对象
NSFileManager *fm = [NSFileManager defaultManager];
NSFileManager *fm2 = [NSFileManager defaultManager]; NSLog(@"%@,%@",fm,fm2);
-- ::23.744 -NSFlleManager[:] <NSFileManager: 0x100306940>,<NSFileManager: 0x100306940>
2、获取当前路径
NSString *currentPath = [fm currentDirectoryPath];
NSLog(@"当前目录:%@0",currentPath);
-- ::15.624 -NSFlleManager[:] 当前目录:/Users/mac/Library/Developer/Xcode/DerivedData/-NSFlleManager-bjtgjiggpfdimgemqrewbfyjlwwu/Build/Products/Debug0
Program ended with exit code:
3、改变当前路径
[fm changeCurrentDirectoryPath:@".."];
currentPath = [fm currentDirectoryPath];
NSLog(@"当前目录:%@0",currentPath);
-- ::54.837 -NSFlleManager[:] 当前目录:/Users/mac/Library/Developer/Xcode/DerivedData/-NSFlleManager-bjtgjiggpfdimgemqrewbfyjlwwu/Build/Products0
Program ended with exit code:
4.创建目录
NSError *error;
[fm createDirectoryAtPath:@"temp" withIntermediateDirectories:YES attributes:nil error:&error];
if(error)
{
NSLog(@"创建目录错误:%@",error);
}
else
{
NSLog(@"创建成功");
} [fm changeCurrentDirectoryPath:@"temp"];
currentPath = [fm currentDirectoryPath];
NSLog(@"当前目录:%@0",currentPath);
-- ::48.230 -NSFlleManager[:] 创建成功
-- ::48.230 -NSFlleManager[:] 当前目录:/Users/mac/Library/Developer/Xcode/DerivedData/-NSFlleManager-bjtgjiggpfdimgemqrewbfyjlwwu/Build/Products/temp0
Program ended with exit code:
5.复制文件(目录)
[fm copyItemAtPath:@"../Debug/01-NSFlleManager" toPath:@"./02-NSFlleManager" error:&error];
if(error)
{
NSLog(@"复制文件失败:%@",error);
}
else
{
NSLog(@"复制文件成功");
}
6.移动文件(目录),在同一个目录下改名操作
[fm moveItemAtPath:@"02-NSFlleManager" toPath:@"03-NSFlleManager" error:&error];
if(error)
{
NSLog(@"文件移动失败:%@",error);
}
else
{
NSLog(@"文件移动成功");
}
7.删除文件(目录)
error = nil;
[fm removeItemAtPath:@"../01-NSFlleManager" error:&error];
if(error)
{
NSLog(@"文件删除失败:%@",error);
}
else
{
NSLog(@"文件删除成功");
}
8.枚举目录内容
8.1 递归输出所有目录的内容
NSDirectoryEnumerator *dirEnumerator = [fm enumeratorAtPath:@"/Users/mac/IOS/OC"];
NSString *path;
while(path = [dirEnumerator nextObject])
{
NSLog(@"%@",path);
}
8.2 .只输出当前目录的内容
NSArray *files = [fm contentsOfDirectoryAtPath:@"/Users/mac/IOS/OC" error:&error];
NSLog(@"%@",files);
9.列出目录(文件)的属性
NSDictionary *attr = [fm attributesOfItemAtPath:@"/Users/mac/IOS/OC" error:&error];
NSLog(@"%@",attr);
-- ::56.755 -NSFlleManager[:] {
NSFileCreationDate = "2015-08-10 01:39:40 +0000";
NSFileExtensionHidden = ;
NSFileGroupOwnerAccountID = ;
NSFileGroupOwnerAccountName = staff;
NSFileModificationDate = "2015-08-24 01:22:42 +0000";
NSFileOwnerAccountID = ;
NSFileOwnerAccountName = mac;
NSFilePosixPermissions = ;
NSFileReferenceCount = ;
NSFileSize = ;
NSFileSystemFileNumber = ;
NSFileSystemNumber = ;
NSFileType = NSFileTypeDirectory;
}
Program ended with exit code:
10.创建文件
NSString *str = @"this is a test";
NSData *data = [str dataUsingEncoding:NSUTF8StringEncoding];
if([fm createFileAtPath:@"1.txt" contents:data attributes:nil])
{
NSLog(@"创建文件成功");
}
else
{
NSLog(@"创建文件失败");
}
11.判断文件是否存在
if([fm fileExistsAtPath:@"1.txt" isDirectory:NULL])
{
NSLog(@"文件存在");
}
else
{
NSLog(@"文件不存在");
}
12.读取文件内容
NSData *data2 = [fm contentsAtPath:@"1.txt"];
NSLog(@"%ld",[data2 length]);
NSString *str2 = [[NSString alloc]initWithData:data2 encoding:NSUTF8StringEncoding];
NSLog(@"%@",str2);
-- ::33.660 -NSFlleManager[:] this is a test
Program ended with exit code: