C++ 檔案複製

來源:互聯網
上載者:User

標籤:color   blog   main   bin   byte   name   複製   out   移動   

 1 #include<iostream> 2 #include<fstream> 3  4 void copy(char* src, char* dst); 5 int main() 6 { 7     using namespace std; 8     char src[50] = "E:/test/jdk-8u121-windows-x64.exe"; 9     char dst[50] = "E:\\test\\jdk-8u121-windows-x64_bak.exe";10     copy(src, dst);11     12     return 0;13 }14 15 void copy(char* src, char* dst)16 {17     using namespace std;18     ifstream in(src,ios::binary);19     ofstream out(dst,ios::binary);20     if (!in.is_open()) {21         cout << "error open file " << src << endl;22         exit(EXIT_FAILURE);23     }24     if (!out.is_open()) {25         cout << "error open file " << dst << endl;26         exit(EXIT_FAILURE);27     }28     if (src == dst) {29         cout << "the src file can‘t be same with dst file" << endl;30         exit(EXIT_FAILURE);31     }32     char buf[2048];33     long long totalBytes = 0;34     while(in)35     {36         //read從in流中讀取2048位元組,放入buf數組中,同時檔案指標向後移動2048位元組37         //若不足2048位元組遇到檔案結尾,則以實際提取位元組讀取。38         in.read(buf, 2048);    39         //gcount()用來提取讀取的位元組數,write將buf中的內容寫入out流。40         out.write(buf, in.gcount());    41         totalBytes += in.gcount();42     }43     in.close();44     out.close();45 }

 

C++ 檔案複製

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.