如何在 C++ 中复制文件?使用 std::ifstream 和 std::ofstream 流读取源文件,写入目标文件,并关闭流。1. 创建源文件和目标文件的新流。2. 检查流是否成功打开。3. 逐块复制文件数据,并关闭流以释放资源。
如何在 C++ 中复制文件?
在 C++ 中,可以使用 std::ifstream
和 std::ofstream
流来复制文件。这个过程包括三个主要步骤:读取源文件,写入目标文件以及关闭流。
代码示例:
#include <fstream> void copyFile(const std::string& sourceFile, const std::string& targetFile) { std::ifstream inputFile(sourceFile, std::ios::binary); std::ofstream outputFile(targetFile, std::ios::binary); if (!inputFile.is_open()) { std::cerr << "Error: Unable to open source file." << std::endl; return; } if (!outputFile.is_open()) { std::cerr << "Error: Unable to open target file." << std::endl; return; } char buffer[1024]; while (inputFile.read(buffer, sizeof(buffer))) { outputFile.write(buffer, inputFile.gcount()); } inputFile.close(); outputFile.close(); }
实战案例:
要使用此函数复制文件,可以按以下步骤操作:
fstream
标头。copyFile
函数,其中 sourceFile
是源文件路径,而 targetFile
是目标文件路径。read
和 write
方法逐块复制文件数据。以上是如何使用C++复制文件?的详细内容。更多信息请关注PHP中文网其他相关文章!