fopen打开文件失败 php,fopen()打开文件失败解决方案

fopen()打开文件失败

#include

#include

#define CNTL_Z '\032'

#define SLEN 50

int main(void)

{

char file[SLEN];

char ch;

FILE *fp;

long count,last;

puts("Enter the name of file to be processed");

fgets(file,SLEN,stdin);

if((fp=fopen(file,"rb"))==NULL)

{

fprintf(stderr,"打开文件\"%s\"失败\n",file);

exit(1);

}

fseek(fp,0L,SEEK_END);          //定位到文件结尾处

last=ftell(fp);

for(count=1L;count<=last;count++)

{

fseek(fp,-count,SEEK_END);

ch=getc(fp);

if(ch!=CNTL_Z&&ch!='r')

putchar(ch);

}

putchar('\n');

if(fclose(fp)!=0)

{

fprintf(stderr,"关闭文件\"%s\"失败\n",file);

exit(2);

}

return 0;

}

为什么我一直在第一个if语句结束。

运行情况:

14531577.png

reverse.c就是源代码文件。

我后来用vs2013编译,竟然fopen()函数编译不过,要我使用fopen_s()函数。

------解决方案--------------------

因为用fgets读取字符串,会自动在字符串后添加'\0'结束符,假设文件名为test.h,则读取后的字符串为“test.h\0”,所以打开文件会失败!

而用scanf读取就是“test.h”。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值