歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Linux下基於C語言流的文件復制

  1. #include <stdio.h>   
  2. #include <stdlib.h>   
  3. int main()  
  4. {  
  5.   char buffer[1024];  
  6.   FILE *in,*out;//定義兩個文件流,分別用於文件的讀取和寫入   
  7.   int len;  
  8.   if((in=fopen("test.pdf","r"))==NULL)//打開源文件的文件流   
  9.    {  
  10.      printf("the file1 can not open\n");  
  11.      exit(1);  
  12.    }  
  13.   if((out=fopen("out.pdf","w"))==NULL)//打開目標文件的文件流   
  14.    {  
  15.      printf("the new file can not open\n");  
  16.      exit(1);  
  17.    }  
  18.   while((len=fread(buffer,1,1024,in))>0)//從源文件中讀取數據並放到緩沖區中,第二個參數1也可以寫成sizeof(char)   
  19.    {  
  20.      fwrite(buffer,1,len,out);//www.linuxidc.com將緩沖區的數據寫到目標文件中   
  21.      memset(buffer,0,1024);  
  22.    }  
  23.   fclose(out);  
  24.   fclose(in);  
  25.   
  26.   return 0;  
  27. }  
上面的實例中,利用文件流達到了文件復制的效果,注意最後應關閉文件流。
Copyright © Linux教程網 All Rights Reserved