std::filesystem::path pth_module_path = s_ModulePath;
std::string dir = pth_module_path.parent_path().string();
std::string file = pth_module_path.filename().string();
std::string ext = pth_module_path.extension().string();
std::string file_without_ext = pth_module_path.stem().string();
std::string s_LogFilePath = std::format("{}\\{}", pth_module_path.parent_path().string(), "log.txt");