1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-02-06 01:15:32 +00:00

ESSImport: prevent accidental overwriting of file

This commit is contained in:
scrawl 2015-01-22 23:28:31 +01:00
parent a619cff615
commit ba7cd04ff7

View file

@ -50,7 +50,15 @@ int main(int argc, char** argv)
if (vm.count("compare"))
importer.compare();
else
{
const std::string& ext = ".omwsave";
if (boost::filesystem::exists(boost::filesystem::path(outputFile))
&& (outputFile.size() < ext.size() || outputFile.substr(outputFile.size()-ext.size()) != ext))
{
throw std::runtime_error("Output file already exists and does not end in .omwsave. Did you mean to use --compare?");
}
importer.run();
}
}
catch (std::exception& e)
{