|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
跟着小甲鱼C语言视频,编写文件合成器,编译无错,运行的时候就出现 cannot open the file 1.jpg,原因是什么呢?我想我编写的应该没问题,跟视频对照过了,是我的文件放错位置了?我放到 《文件合成器》文件下的,DUBUG里也放了。各位大侠帮我看看吧,问题出在哪?
#include <stdio.h>
#include <stdlib.h>
void main()
{
FILE *f_pic,*f_file,*f_finish;
char pic_name[20],file_name[20],finish_name[20];
char ch;
printf("请输入要合成的图片和文件名称:\n");
printf("图片:");
scanf("%s",pic_name);
printf("文件:");
scanf("%s",file_name);
printf("生成的文件为:");
scanf("%s",finish_name);
if(!(f_pic=fopen(pic_name,"rb"))) //打开文件1 (.jpg)
{
printf("cannot open the picture %s !",pic_name);
return;
}
if(!(f_file=fopen(file_name,"rb"))) //打开文件2(.rar)
{
printf("cannot open the file %s !",file_name);
return;
}
if(!(f_file = fopen(finish_name,"wb"))) //创建文件3.jpg
{
printf("cannot open the file %s !",finish_name);
return;
}
while(!(feof(f_pic))) //将第一个文件读到第三个文件
{
ch=fgetc(f_pic);
fputc(ch,f_finish);
}
fclose(f_pic);
while(!(feof(f_file))) //将第二个文件读到第三个文件
{
ch=fgetc(f_file);
fputc(ch,f_finish);
}
fclose(f_file);
fclose(f_finish);
system("pause");
}
|
|