Fix updating not deleting the old exe on windows
Also fix WriteFile being unable to overwrite existing files. The rename would fail because the file was still open, and the sanity remove in response to that would also fail for the same reason.
This commit is contained in:
parent
bd667dddad
commit
b7a6663e08
@ -76,19 +76,20 @@ bool WriteFile(const std::vector<char> &fileData, ByteString filename)
|
||||
{
|
||||
while (true)
|
||||
{
|
||||
writeFileName = ByteString::Build(filename, ".temp.", random_gen() % 100000);
|
||||
writeFileName = ByteString::Build(filename, ".temp.", Format::Width(5), Format::Fill('0'), random_gen() % 100000);
|
||||
if (!FileExists(writeFileName))
|
||||
{
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
std::ofstream f(writeFileName, std::ios::binary);
|
||||
if (f)
|
||||
bool ok = false;
|
||||
{
|
||||
f.write(&fileData[0], fileData.size());
|
||||
std::ofstream f(writeFileName, std::ios::binary);
|
||||
if (f) f.write(&fileData[0], fileData.size());
|
||||
ok = bool(f);
|
||||
}
|
||||
if (!f)
|
||||
if (!ok)
|
||||
{
|
||||
std::cerr << "WriteFile: " << filename << ": " << strerror(errno) << std::endl;
|
||||
if (replace)
|
||||
|
@ -304,7 +304,7 @@ bool UpdateStart(const std::vector<char> &data)
|
||||
updName = exeName.substr(0, exeName.length() - 4);
|
||||
updName = updName + "_upd.exe";
|
||||
|
||||
if (!MoveFile(Platform::WinWiden(exeName).c_str(), Platform::WinWiden(updName).c_str()))
|
||||
if (!RenameFile(exeName, updName))
|
||||
return false;
|
||||
|
||||
if (!WriteFile(data, exeName))
|
||||
|
Loading…
Reference in New Issue
Block a user