IOS-文件管理NSFileManager

来源:互联网 发布:sql注入防御 编辑:程序博客网 时间:2024/05/17 21:19
NSFileManager每个路径都是一个NSString对象,可以是相对路径,也可以是绝对路径.文件方法:- (NSData *)contentsAtPath:(NSString *)path从一个文件中读取数据.- (BOOL)createFileAtPath:(NSString *)path contents:(NSData *)contents attributes:(NSDictionary *)attributes向一个文件中写入指定属性的内容.- (BOOL)removeItemAtPath:(NSString *)path error:(NSError **)error删除一个文件,文件夹,链接- (BOOL)moveItemAtPath:(NSString *)srcPath toPath:(NSString *)dstPath error:(NSError **)error移动(重命名)文件到一个指定的路径- (BOOL)copyItemAtPath:(NSString *)srcPath toPath:(NSString *)dstPath error:(NSError **)error复制一个文件到指定的路径- (BOOL)contentsEqualAtPath:(NSString *)path1 andPath:(NSString *)path2比较两个文件是否相同- (BOOL)fileExistsAtPath:(NSString *)path测试文件是否存在- (BOOL)isReadableFileAtPath:(NSString *)path测试文件是否存在并可读- (BOOL)isWritableFileAtPath:(NSString *)path测试文件是否存在并可写- (NSDictionary *)attributesOfItemAtPath:(NSString *)path error:(NSError **)error获取文件属性- (BOOL)setAttributes:(NSDictionary *)attributes ofItemAtPath:(NSString *)path error:(NSError **)error更改文件属性
0 0
原创粉丝点击