常见的NSFileManager方法

来源:互联网 发布:手机动漫配音软件 编辑:程序博客网 时间:2024/05/22 11:40

常见NSFileManager文件方法

-(NSData *)contentsAtPath:path

path所代表的文件中读取数据

-(BOOL)createFileAtPath:path contents:(BOOL)data attributes:attr

将数据写入文件

-(BOOL)removeFileAtPath:path handler:handler

path所代表的文件删除

-(BOOL)movePath:from toPath:to handler:handler

移动或者重命名文件,to所代表的文件不能是已经存在的文件

-(BOOL)copyPath:from toPath:to handler:handler

复制文件,to所代表的文件不能是已经存在的文件

-(BOOL)contentsEqualAtPath:path1 andPath:path2

比较path1path2所代表的文件

-(BOOL)fileExistsAtPath:path

检查path所代表的文件是否存在

-(BOOL)isReadableFileAtPath:path

检查path所代表的文件是否存在、是否可读

-(BOOL)isWritableFileAtPath:path

检查path所代表的文件是否存在、是否可写

-(NSDictionary *)fileAttributesAtPath:path traverseLink:(BOOL)flag

获取path所代表的文件属性

-(BOOL)changeFileAttributes:attr atPath:path

改变文件属性


常见的NSFileManager目录的方法:

-NSString *currentDirectoryPath 

获取当前目录

-BOOLchangeCurrentDirectoryPathpath

更改当前目录

-BOOLcopyPathfrom toPathto handlerhandler 

复制目录结构,to不能已经存在

-BOOLcreateDirectoryAtPathpath attributesattr

创建目录

-BOOLfileExistsAtPathpath isDirectory:(BOOL *flag 

测试文件是否为目录 (flag存储结构yes/no

-NSArray *contentsOfDirectoryAtPath:path 

列出目录的内容

-NSDirectoryEnumerator *enumeratorAtPathpath 

枚举目录的内容

-BOOLremoveFileAtPathpath handlerhandler 

删除空目录

-BOOLmovePath:from toPath:tohandler:handler

重命名或移动一个目录,to不能是已经存在的