file
*pfile
=
fopen("d:\\001.txt",
fseek(pfile,0l,seek_end)//将文件指针移动到文件末尾
unsigned
long
buflen
=
ftell(pfile)//获取文件长度
unsigned
char
*buf
=
new
unsigned
char[buflen]//创建改文件长度大小的一块内存用来放要读进来的文件内容
rewind(pfile)//指针移动到文件头
fread(buf,1,buflen,pfile)//将文件的内容全部读入buf中
fclose(pfile)//关闭文件
上面为读文件,下面为写文件
file
*pfile
2=
fopen("d:\\002.txt",
"wb")//以写二进制方式打开002.txt文件
fwrite(buf,1,buflen,pfile2)//将buf写入002.txt
fclose(pfile2);//关闭文件
int main(){//以读的方式打开文件
FILE * fp1 = fopen("1.txt","r")
if(fp1 == NULL)
{
perror("fopen1 error")
exit(-1)
}
//以读的方式打开文件
FILE * fp2 = fopen("2.txt","r")
if(fp2 == NULL)
{
perror("fopen2 error")
exit(-1)
}
//以写的方式打开文件
FILE * fp3 = fopen("3.txt","w")
if(fp3 == NULL)
{
perror("fopen3 error")
exit(-1)
}
//初始化3个字符
char ch1 = '0'
while((ch1 = getc(fp1)) != EOF)
{
putc(ch1,fp3)
}
while((ch1 = getc(fp2)) != EOF)
{
putc(ch1,fp3)
}
//关闭文件1,2,3
fclose(fp1)
fclose(fp2)
fclose(fp3)
return 0
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)