2009年8月15日 星期六

C/C++筆記-檔案複製程式碼

#include <stdio.h>
#include <stdlib.h>
int main(void)
{
  char ch;
  char src[] = "file1.txt";
  char dst[] = "file2.txt";
  File *from,*to;
  if((from = fopen(src,"rb")) == NULL) exit(1);
  if((to = fopen(dst,"wb")) == NULL) exit(1);
  while(fread(&ch,sizeof(ch),1,from) != 0)
    fwrite(&ch,sizeof(ch),1,to);
  fclose(from);
  fclose(to);
  system("pause");
  return 0;
}
##ShowAll##

0 意見 :

張貼留言