Skip to content
Snippets Groups Projects
Verified Commit b5a9e4ea authored by Tobias Frisch's avatar Tobias Frisch
Browse files

[#100] Big brain move! Big brain!

parent 8a46f8d7
No related branches found
No related tags found
1 merge request!82Resolve "Upscaling Module"
Pipeline #26428 passed
......@@ -14,6 +14,16 @@
namespace vkcv {
std::filesystem::path generateTemporaryFilePath() {
std::filesystem::path tmp = generateTemporaryDirectoryPath();
if (std::filesystem::is_directory(tmp)) {
return std::filesystem::path(tmp.string() + "W"); // add W for Wambo
} else {
return tmp;
}
}
std::filesystem::path generateTemporaryDirectoryPath() {
std::error_code code;
auto tmp = std::filesystem::temp_directory_path(code);
......@@ -45,14 +55,6 @@ namespace vkcv {
return tmp / name;
}
std::filesystem::path generateTemporaryDirectoryPath() {
std::filesystem::path tmp = generateTemporaryFilePath();
if (std::filesystem::is_directory(tmp)) {
return std::filesystem::path(tmp.string() + "W"); // add W for Wambo
} else {
return tmp;
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment