免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3292 | 回复: 3
打印 上一主题 下一主题

【求助】SUSE linux 下文件拷贝程序的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-10-11 16:22 |只看该作者 |倒序浏览
#include <stdio.h>

int main(void)
{
   FILE *instream,*outstream;

   /* open a file for reading */
   if( (instream = fopen("file1.txt", "r")) == NULL )
   {
      printf("open in file err!\n");
      exit(-1);
   }

   if( (outstream = fopen("file3.txt", "w+")) == NULL )
   {
      printf("open out file err!\n");
      exit(-1);
   }

   /* read a character from the file */
   while( ! feof(instream) ) /* check for EOF */
   {
       fputc(fgetc(instream),outstream);
   }
   
   printf("We have reached end-of-file\n");

   /* close the file */
   fclose(instream);
   fclose(outstream);
   return 0;
}


file1.txt 内容:
1: line1!
2: line2!
3: line3!
4: line4!

file3.txt内容:
1: line1!
2: line2!
3: line3!
4: line4!
[

论坛徽章:
0
2 [报告]
发表于 2007-10-11 16:36 |只看该作者
feof是在文件结束了才会返回真的,所以多写入了一个EOF字符

论坛徽章:
0
3 [报告]
发表于 2007-10-11 16:37 |只看该作者
把代码改一下,判断一下是否读到了EOF这符 不过这段代码还是有问题的,如果读出的字符和EOF的值相同while将跳出可能拷不全

#include <stdio.h>
#include <stdlib.h>

int main(void)
{
   FILE *instream,*outstream;
   char ch;

   /* open a file for reading */
   if( (instream = fopen("c.c", "r")) == NULL )
   {
      printf("open in file err!\n");
      exit(-1);
   }

   if( (outstream = fopen("file3.txt", "w+")) == NULL )
   {
      printf("open out file err!\n");
      exit(-1);
   }

   /* read a character from the file */
   while((ch=fgetc(instream))!=EOF) fputc(ch,outstream);
   //while((ch=fputc(fgetc(instream),outstream))


   printf("We have reached end-of-file\n");

   /* close the file */
   fclose(instream);
   fclose(outstream);
   return 0;
}


[ 本帖最后由 xjtdy888 于 2007-10-11 16:39 编辑 ]

论坛徽章:
0
4 [报告]
发表于 2007-10-11 16:51 |只看该作者
3x , xjtdy888
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP