FileUtil: Only attempt to write to the destination in Copy if there is actually content to write

This commit is contained in:
OatmealDome 2022-07-05 15:13:20 -04:00
parent 24498ca315
commit c6eb5e2623
1 changed files with 12 additions and 2 deletions

View File

@ -433,8 +433,18 @@ bool Copy(const std::string& source_path, const std::string& destination_path)
#else #else
std::ifstream source{source_path, std::ios::binary}; std::ifstream source{source_path, std::ios::binary};
std::ofstream destination{destination_path, std::ios::binary}; std::ofstream destination{destination_path, std::ios::binary};
// Only attempt to write with << if there is actually something in the file
if (source.peek() != std::ifstream::traits_type::eof())
{
destination << source.rdbuf(); destination << source.rdbuf();
return source.good() && destination.good(); return source.good() && destination.good();
}
else
{
// We can't use source.good() here because eofbit will be set, so check for the other bits.
return !source.fail() && !source.bad() && destination.good();
}
#endif #endif
} }