这个问题困扰我很久了,一直想不明白,求大家帮忙看看啊

利用fopen打开文件,无论文件是否存在都显示打开成功,而且文件头和文件尾的位置相等(ftell测试文件首和文件尾都返回0)
C/C++ code?123456789101112131415161718192021222324252627282930313233343536373839404142434445#include <stdio.h>#include <stdlib.h>#define FNSIZE 256int main(void){ char filename[FNSIZE]={0}; int psn; char buffer; FILE *fp; fprintf(stdout,"Enter the file name.\n"); gets(filename); if((fp=fopen(filename,"rb"))==NULL) { fprintf(stderr,"Open file:%s failed.\n",filename); exit(1); } printf("filename:%s",filename); fprintf(stdout,"Present position:%d\n",ftell(fp)); fprintf(stdout,"Enter the offset(int) to present position.\n"); while(fscanf(stdin,"%d",&psn)!=0) { if(fseek(fp,psn,SEEK_CUR)==0) { buffer=getc(fp); fprintf(stderr,"Present position:%d\n",ftell(fp)); fseek(fp,0L,SEEK_END); fprintf(stderr,"End position:%d\n",ftell(fp)); while(buffer!='\n' && buffer!=EOF) { putc(buffer,stdout); } } else { fprintf(stderr,"To the end of file.\n"); break; } fprintf(stdout,"*******************************************************\n"); fprintf(stdout,"Enter next position.\n"); } return 0;}

素胚勾勒不出你
浏览 80回答 2
2回答

千万里不及你

①文件不存在;②文件名错误,打开文件的名字应该写成"c:\\file.txt",而不是"c:\file.txt";③代码错误;fopen函数用于打开文件并获取文件的指针,以便对文件进行操作。函数原型:file*fopen(constchar*path,constchar*mode);参数:path字符串包含欲打开的文件路径及文件名,参数mode字符串则代表着流形态。mode有下列几种形态字符串:r以只读方式打开文件,该文件必须存在。r+以可读写方式打开文件,该文件必须存在。rb+读写打开一个二进制文件,允许读写数据,文件必须存在。w打开只写文件,若文件存在则文件长度清为0,即该文件内容会消失。若文件不存在则建立该文件。w+打开可读写文件,若文件存在则文件长度清为零,即该文件内容会消失。若文件不存在则建立该文件。a以附加的方式打开只写文件。若文件不存在,则会建立该文件,如果文件存在,写入的数据会被加到文件尾,即文件原先的内容会被保留。(eof符保留)a+以附加方式打开可读写的文件。若文件不存在,则会建立该文件,如果文件存在,写入的数据会被加到文件尾后,即文件原先的内容会被保留。(原来的eof符不保留)wb只写打开或新建一个二进制文件;只允许写数据。wb+读写打开或建立一个二进制文件,允许读和写。ab+读写打开一个二进制文件,允许读或在文件末追加数据。上述的形态字符串都可以再加一个b字符,如rb、w+b或ab+等组合,加入b字符用来告诉函数库以二进制模式打开文件。如果不加b,表示默认加了t,即rt,wt,其中t表示以文本模式打开文件。由fopen()所建立的新文件会具有s_irusr|s_iwusr|s_irgrp|s_iwgrp|s_iroth|s_iwoth(0666)权限,此文件权限也会参考umask值。有些c编译系统可能不完全提供所有这些功能,有的c版本不用"r+","w+","a+",而用"rw","wr","ar"等,读者注意所用系统的规定。返回值:文件顺利打开后,指向该流的文件指针就会被返回。如果文件打开失败则返回null,并把错误代码存在errno中。一般而言,打开文件后会做一些文件读取或写入的动作,若打开文件失败,接下来的读写动作也无法顺利进行,所以一般在fopen()后作错误判断及处理。示例:以只读方式打开文件#include#definef_path"d:\\myfile\\file.dat"intmain(void){file*fp=null;//需要注意fp=fopen(f_path,"r");if(null==fp){return-1;//要返回错误代码}fclose(fp);fp=null;//需要指向空,否则会指向原打开文件地址return0;}&nbsp;

天涯尽头无女友

刚打开文件时文件指针的位置默认是在文件开头的。我测试文件不存在的话显示是打开失败(如果是用写方式打开,一般都是返回成功,因为没有文件的话会创建一个,除非创建失败)。文件头和文件尾显示的值也没问题。程序的错误我就不改,懒#include <stdio.h>#include <stdlib.h>#define FNSIZE 256int main(void){&nbsp;&nbsp;char filename[FNSIZE]={0};&nbsp;&nbsp;int psn;&nbsp;&nbsp;char buffer;&nbsp;&nbsp;FILE *fp;&nbsp;&nbsp;fprintf(stdout,"Enter the file name.\n");&nbsp;&nbsp;gets(filename);&nbsp;&nbsp;if((fp=fopen(filename,"rb"))==NULL)&nbsp;&nbsp;{&nbsp;&nbsp;fprintf(stderr,"Open file:%s failed.\n",filename);&nbsp;&nbsp;exit(1);&nbsp;&nbsp;}&nbsp;&nbsp;printf("filename:%s",filename);&nbsp;&nbsp;fprintf(stdout,"Present position:%d\n",ftell(fp));&nbsp;&nbsp;fprintf(stdout,"Enter the offset(int) to present position.\n");&nbsp;&nbsp;while(fscanf(stdin,"%d",&psn)!=0)&nbsp;&nbsp;{&nbsp;&nbsp;if(fseek(fp,psn,SEEK_CUR)==0)//这个函数允许指定的位置超过文件末尾&nbsp;&nbsp;{&nbsp;&nbsp;buffer=getc(fp);fprintf(stderr,"Present position:%d\n",ftell(fp));&nbsp;&nbsp;fseek(fp,0L,SEEK_END);&nbsp;&nbsp;fprintf(stderr,"End position:%d\n",ftell(fp));&nbsp;&nbsp;while(buffer!='\n' && buffer!=EOF)&nbsp;&nbsp;{&nbsp;&nbsp;putc(buffer,stdout);buffer=getc(fp);//这里应该有个输出操作吧,否则就死循环了}//循环结束后,指针指向末尾,继续输入psn的值//由于fseek允许指定的指针位置超过文件末尾,不会进入else//陷入循环输入状态}&nbsp;&nbsp;else&nbsp;&nbsp;{&nbsp;&nbsp;fprintf(stderr,"To the end of file.\n");&nbsp;&nbsp;break;&nbsp;&nbsp;}&nbsp;&nbsp;fprintf(stdout,"*******************************************************\n");&nbsp;&nbsp;fprintf(stdout,"Enter next position.\n");&nbsp;&nbsp;}&nbsp;&nbsp;return 0;}
打开App,查看更多内容
随时随地看视频慕课网APP