#include <iostream>#include <fstream>#include <string>int main() { std::string source_file_name, target_file_name; std::cout << "请输入源文件名:"; std::cin >> source_file_name; std::cout << "请输入目标文件名:"; std::cin >> target_file_name; std::ifstream source_file(source_file_name, std::ios::in | std::ios::binary); std::ofstream target_file(target_file_name, std::ios::out | std::ios::binary); if (!source_file || !target_file) { std::cerr << "文件打开失败" << std::endl; return 1; } target_file << source_file.rdbuf(); if (source_file.bad()) { std::cerr << "读取文件失败" << std::endl; source_file.close(); target_file.close(); return 1; } source_file.close(); target_file.close(); std::cout << "文件复制成功" << std::endl; return 0;}修改这段程序使他运行
时间: 2024-02-11 18:07:52 浏览: 109
这段程序本身是可以运行的,但是需要用户输入源文件名和目标文件名,也就是需要手动输入文件名才能进行复制操作。如果要实现自动化的文件复制,可以将源文件名和目标文件名写入程序中,例如:
```c++
#include <iostream>
#include <fstream>
#include <string>
int main() {
std::string source_file_name = "source.txt"; // 源文件名
std::string target_file_name = "target.txt"; // 目标文件名
std::ifstream source_file(source_file_name, std::ios::in | std::ios::binary);
std::ofstream target_file(target_file_name, std::ios::out | std::ios::binary);
if (!source_file || !target_file) {
std::cerr << "文件打开失败" << std::endl;
return 1;
}
target_file << source_file.rdbuf();
if (source_file.bad()) {
std::cerr << "读取文件失败" << std::endl;
source_file.close();
target_file.close();
return 1;
}
source_file.close();
target_file.close();
std::cout << "文件复制成功" << std::endl;
return 0;
}
```
这样就可以直接运行程序进行文件复制操作,而不需要手动输入文件名。当然,如果需要复制其他文件,只需要修改源文件名和目标文件名即可。
阅读全文