IOS中大檔案拷貝演算法

來源:互聯網
上載者:User

標籤:style   blog   class   c   code   java   

 1 + (void)copyFileFromPath:(NSString *)fromPath toPath:(NSString *)toPath 2 { 3     //每次讀取資料大小 4     #define READ_SIZE 10 5     // 擷取檔案管理工具 6     NSFileManager *fm = [NSFileManager defaultManager]; 7      8     // 建立目標檔案,用於儲存從源檔案讀取的NSData資料 9     10     BOOL isSuccess = [fm createFileAtPath:toPath contents:nil attributes:nil];11     12     if (!isSuccess) {13         NSLog(@"建立目標檔案失敗!");14         return;15     }16     // 擷取源檔案大小17     NSDictionary *dic = [fm attributesOfItemAtPath:fromPath error:nil];18     NSNumber *file_size = [dic objectForKey:@"NSFileSize"];19     NSNumber *hadReadSize = @0;20     double leftSize = [file_size doubleValue] - [hadReadSize doubleValue];21     // 建立源檔案和目標檔案的控制代碼22     NSFileHandle *sh = [NSFileHandle fileHandleForReadingAtPath:fromPath];23     NSFileHandle *dh = [NSFileHandle fileHandleForWritingAtPath:toPath];24     NSData *tempData = nil;25     while (leftSize > 0) {26         if (leftSize < READ_SIZE) {27             tempData = [sh readDataToEndOfFile];28             [dh writeData:tempData];29             break;30         }31         else32         {33             tempData = [sh readDataOfLength:READ_SIZE];34             [dh writeData:tempData];35             leftSize -= READ_SIZE;36         }37         38     }39     40 }

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.