Health-GPS 3.0.0.0
Global Health Policy Simulation model (Health-GPS)
Loading...
Searching...
No Matches
download_file.h
Go to the documentation of this file.
1#pragma once
2
3#include <filesystem>
4#include <string>
5
6namespace hgps::input {
10void download_file(const std::string &url, const std::filesystem::path &download_path);
11
16std::filesystem::path download_file_to_temporary(const std::string &url,
17 const std::string &file_extension);
18} // namespace hgps::input
Data structures containing model parameters and configuration options.
Definition configuration.cpp:75
std::filesystem::path download_file_to_temporary(const std::string &url, const std::string &file_extension)
Download the file at the specified URL to a temporary folder.
Definition download_file.cpp:55
void download_file(const std::string &url, const std::filesystem::path &download_path)
Download the file at the specified URL.
Definition download_file.cpp:35