码迷,mamicode.com
首页 > 移动开发 > 详细

iOS持续写文件到本地

时间:2016-09-22 13:04:12      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:

 

        NSString *tempSavePath = [NSString stringWithFormat:@"%@/Documents",kDocumentPath];

        NSFileHandle *fileHandle = [NSFileHandle fileHandleForUpdatingAtPath:tempSavePath];

    

//     持续写文件到本地

            [fileHandle seekToEndOfFile];  //将节点跳到文件的末尾

            [fileHandle writeData:data]; //追加写入数据

    

            [fileHandle closeFile];

iOS持续写文件到本地

标签:

原文地址:http://www.cnblogs.com/cjt5132/p/5895784.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!