Health-GPS 3.0.0.0
Global Health Policy Simulation model (Health-GPS)
Loading...
Searching...
No Matches
zip_file.h
Go to the documentation of this file.
1#pragma once
2
3#include <filesystem>
4
5namespace hgps::input {
9std::filesystem::path get_zip_cache_directory(const std::string &file_hash);
10
14void extract_zip_file(const std::filesystem::path &file_path,
15 const std::filesystem::path &output_directory);
16} // namespace hgps::input
Data structures containing model parameters and configuration options.
Definition configuration.cpp:75
std::filesystem::path get_zip_cache_directory(const std::string &file_hash)
Get cache directory for extracting a file into.
Definition zip_file.cpp:42
void extract_zip_file(const std::filesystem::path &file_path, const std::filesystem::path &output_directory)
Extract a zip file to the specified location.
Definition zip_file.cpp:50