Если вам удобно компилировать C++, это должно сработать. По сути, я помещаю каждую строку файла в вектор и выводю его в новый файл с помощью обратного итератора.
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
int main()
{
std::vector<std::string> fileLines;
std::string currLine;
std::ifstream inFile("input.txt");
if (inFile.is_open())
{
while (inFile.good())
{
std::getline(inFile, currLine);
fileLines.push_back(currLine);
}
inFile.close();
}
else
{
std::cout << "Error - could not open input file!\n";
return 1;
}
std::ofstream outFile("output.txt");
if (outFile.is_open())
{
std::vector<std::string>::reverse_iterator rIt;
for (rIt = fileLines.rbegin(); rIt < fileLines.rend(); rIt++)
{
outFile << *rIt;
}
outFile.close();
}
else
{
std::cout << "Error - could not open output file!\n";
return 1;
}
return 0;
}
Если в выходном файле отсутствуют разрывы строк между строками, измените outFile << *rIt;
быть outFile << *rIt << "\r\n";
поэтому добавляется разрыв строки (пропустите \r
если вы работаете в Unix/Linux).
Отказ от ответственности: я не тестировал этот код (я написал его очень быстро в блокноте), но он выглядит жизнеспособным.