1. 程式人生 > 實用技巧 >資料檔案——之複製二進位制檔案

資料檔案——之複製二進位制檔案

程式碼:

 1 //This is c program code!
 2 /* *=+=+=+=+* *** *=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
 3   * 文件資訊: *** :~/WORKM/stutyCode/cCode/recipesProblemSolution/chapter06/test6_18.c
 4   * 版權宣告: *** :(魎魍魅魑)MIT
 5   * 聯絡信箱: *** :[email protected]
 6   * 建立時間: *** :2020年11月22日的上午10:33
 7   * 文件用途: *** :資料結構與演算法分析-c語言描述
 8   * 作者資訊: *** :guochaoxxl(
http://cnblogs.com/guochaoxxl) 9 * 修訂時間: *** :2020年第46周 11月22日 星期日 上午10:33 (第327天) 10 * 檔案描述: *** :自行新增 11 * *+=+=+=+=* *** *+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+*/ 12 #include <stdio.h> 13 14 void resultOpen(FILE *fPtr){ 15 if(fPtr == NULL){ 16 printf("File opening failed.\n
"); 17 return; 18 } 19 printf("File opening successfully.\n"); 20 21 return; 22 } 23 24 void closeState(FILE *fPtr){ 25 int clo = fclose(fPtr); 26 if(clo == -1){ 27 puts("file-closing failed."); 28 } 29 if(clo == 0){ 30 puts("file-closing successfully.
"); 31 } 32 } 33 34 int main(int argc, char **argv) 35 { 36 FILE *fPtrSource = fopen("hello", "rb"); 37 resultOpen(fPtrSource); 38 39 FILE *fPtrTarget = fopen("hellor", "wb"); 40 resultOpen(fPtrTarget); 41 42 int ch = fgetc(fPtrSource); 43 while(ch != EOF){ 44 fputc(ch, fPtrTarget); 45 ch = fgetc(fPtrSource); 46 } 47 puts(""); 48 puts("File copied successfully.\n"); 49 50 closeState(fPtrSource); 51 closeState(fPtrTarget); 52 53 return 0; 54 }