程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> C++文件拷貝應用技巧探討

C++文件拷貝應用技巧探討

編輯:C++入門知識

C++編程語言中對於文件的操作是一個非常重要的應用技術。我們在這篇文章中將會針對C++文件拷貝的相關應用方式來具體講解一下這方面的應用技巧,以便將來在實際編程中得到幫助。

C++文件拷貝代碼示例:

  1. #include< iostream.h>   
  2. #include< afx.h>   
  3. void main()   
  4. {   
  5. char SourceName[81];   
  6. char DestinName[81];   
  7. cout< < "\n 請輸入源文件名:";   
  8. cin>>SourceName;   
  9. cout< < "\n 請輸入目標文件名:";   
  10. cin>>DestinName;   
  11. try   
  12. {   
  13. CFile fileSource(SourceName,CFile::modeRead);   
  14. CFile fileDestin(DestinName,CFile::modeCreate|CFile::modeWrite);   
  15. char c;   
  16. while(fileSource.Read(&c,1))   
  17. fileDestin.Write(&c,1);   
  18. }   
  19. catch(CFileException *e)   
  20. {   
  21. switch(e->m_cause)   
  22. {   
  23. case CFileException::fileNotFound:   
  24. cout< < "未找到文件!"< < endl;   
  25. break;   
  26. case CFileException::badPath:   
  27. cout< < "路徑輸入有錯!"< < endl;   
  28. break;   
  29. case CFileException::accessDenied:   
  30. cout< < "沒有訪問權限!"< < endl;   
  31. break;   
  32. case CFileException::diskFull:   
  33. cout< < "磁盤滿!"< < endl;   
  34. break;   
  35. default:   
  36. cout< < "在文件拷貝過程中發生不知名錯誤!"< < endl;   
  37. break;   
  38. }   
  39. }   

以上就是對C++文件拷貝的相關介紹。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved