1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-03-31 10:20:13 +00:00

Catch filesystem exceptions

This commit is contained in:
Andrei Kortunov 2023-07-31 15:21:10 +04:00
parent 1ae2a994f0
commit c50769c8c5

View File

@ -178,12 +178,21 @@ int main(int argc, char** argv)
{ {
vfs = std::make_unique<VFS::Manager>(); vfs = std::make_unique<VFS::Manager>();
for (const std::filesystem::path& path : archives) for (const std::filesystem::path& path : archives)
{
try
{
if (auto archive = makeArchive(path)) if (auto archive = makeArchive(path))
vfs->addArchive(std::move(archive)); vfs->addArchive(std::move(archive));
else else
std::cerr << '"' << path << "\" is unsupported archive" << std::endl; std::cerr << '"' << path << "\" is unsupported archive" << std::endl;
vfs->buildIndex(); vfs->buildIndex();
} }
catch (std::exception& e)
{
std::cerr << "ERROR, an exception has occurred: " << e.what() << std::endl;
}
}
}
// std::cout << "Reading Files" << std::endl; // std::cout << "Reading Files" << std::endl;
for (const auto& path : files) for (const auto& path : files)