#include <iostream>
#include <vector>
using namespace std;

// эта функция реализована в windows.h, для иллюстрацию напишем её упрощённую версию
void CopyFile(string existingFileName, string newFileName, bool failIfExists) {
	cout << "Copy from " << existingFileName << " to " << newFileName << endl;
}

int main() {
	vector<string> files = {"one.txt", "two.txt", "three.txt"};
	for (string file : files) {
		string source = "E://" + file;
		string destination = "D://" + file;
		CopyFile(source, destination, false);
	}
	return 0;
}