解决方案 »

  1.   

    你通过Google搜索NSFileManager一定能够得到答案的,
      

  2.   


    措施名称 描述
    -(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 比较path1和path2所代表的文件
    -(BOOL)fileExistsAtPath:path 检查path所代表的文件是否存在
    -(BOOL)isReadableFileAtPath:path 检查path所代表的文件是否存在、是否可读
    -(BOOL)isWritableFileAtPath:path 检查path所代表的文件是否存在、是否可写
    -(NSDictionary *)fileAttributesAtPath:path traverseLink:(BOOL)flag 获取path所代表的文件属性
    -(BOOL)changeFileAttributes:attr atPath:path 改变文件属性