C语言:文件复制

文本文件复制:

cpp 复制代码
#include<stdio.h>


int main()
{
	FILE* pFile1 = NULL;
	FILE* pFile2 = NULL;

	fopen_s(&pFile1,"D:\\11111.txt","r");
	fopen_s(&pFile2,"D:\\222.txt", "w");

	char c;


	while((c=fgetc(pFile1))!=EOF)
	{
		fputc(c,pFile2);
	}



	fclose(pFile1);
	fclose(pFile2);
	return 0;
}

二进制文件复制:

cpp 复制代码
#include<stdio.h>



int main()
{
	FILE* pfile1 = NULL;
	FILE* pfile2 = NULL;

	fopen_s(&pfile1, "C:\\Users\\ljw\\Desktop\\WIN_20231103_17_32_35_Pro.jpg", "rb");//一张图片
	fopen_s(&pfile2, "d:\\abc.jpg", "wb");

	char buf[1024];

	while (fread(buf, 1, 1024, pfile1) > 0)//返回值>0代表读取成功
	{
		fwrite(buf, 1, 1024, pfile2);
	}

    fclose(pfile1);
    fclose(pfile2);

	return 0;
}

但在二进制文件复制这里我们会发现一个问题:那就是复制过来文件大小的大于原文件的大小。

cpp 复制代码
#include<stdio.h>



int main()
{
	FILE* pfile1 = NULL;
	FILE* pfile2 = NULL;

	fopen_s(&pfile1, "C:\\Users\\ljw\\Desktop\\WIN_20231103_17_32_35_Pro.jpg", "rb");
	fopen_s(&pfile2, "d:\\abc.jpg", "wb");

	char buf[1024];
	size_t nread,nwrite;

	while ((nread=fread(buf, 1, 1024, pfile1)) > 0)
	{
		nwrite=fwrite(buf, 1, 1024, pfile2);
		printf("%d %d\n", nread, nwrite);
        //发现最后一次读取不足1024,但写入仍为1024,因此造成
        //要解决此问题只需将nwrite=fwrite(buf, 1, 1024, pfile2);中的1024改为nread即可
	}
    
    fclose(pfile1);
    fclose(pfile2);

	return 0;
}
相关推荐
我不会编程55529 分钟前
Python Cookbook-5.1 对字典排序
开发语言·数据结构·python
李少兄30 分钟前
Unirest:优雅的Java HTTP客户端库
java·开发语言·http
懒羊羊大王&1 小时前
模版进阶(沉淀中)
c++
无名之逆1 小时前
Rust 开发提效神器:lombok-macros 宏库
服务器·开发语言·前端·数据库·后端·python·rust
cg50171 小时前
Spring Boot 的配置文件
java·linux·spring boot
似水এ᭄往昔1 小时前
【C语言】文件操作
c语言·开发语言
啊喜拔牙1 小时前
1. hadoop 集群的常用命令
java·大数据·开发语言·python·scala
暮云星影1 小时前
三、FFmpeg学习笔记
linux·ffmpeg
owde1 小时前
顺序容器 -list双向链表
数据结构·c++·链表·list
xixixin_1 小时前
为什么 js 对象中引用本地图片需要写 require 或 import
开发语言·前端·javascript