|
static void | filesystem::push_if_exists (std::vector< std::string > *vec, const bfs::path &file, bool full) |
|
static bool | filesystem::error_except_not_found (const error_code &ec) |
|
static bool | filesystem::is_directory_internal (const bfs::path &fpath) |
|
static bool | filesystem::file_exists (const bfs::path &fpath) |
|
static bfs::path | filesystem::get_dir (const bfs::path &dirpath) |
|
static bool | filesystem::create_directory_if_missing (const bfs::path &dirpath) |
|
static bool | filesystem::create_directory_if_missing_recursive (const bfs::path &dirpath) |
|
static bool | filesystem::check_prefix (bfs::path::iterator &fi, const bfs::path::iterator &fe, const bfs::path &prefix) |
|
static bool | filesystem::is_prefix (const bfs::path &full, const bfs::path &prefix_path) |
|
static bfs::path | filesystem::subtract_path (const bfs::path &full, const bfs::path &prefix_path) |
|
void | filesystem::get_files_in_dir (const std::string &dir, std::vector< std::string > *files, std::vector< std::string > *dirs=nullptr, name_mode mode=name_mode::FILE_NAME_ONLY, filter_mode filter=filter_mode::NO_FILTER, reorder_mode reorder=reorder_mode::DONT_REORDER, file_tree_checksum *checksum=nullptr) |
| Get a list of all files and/or directories in a given directory. More...
|
|
std::string | filesystem::get_dir (const std::string &dir) |
|
std::string | filesystem::get_next_filename (const std::string &name, const std::string &extension) |
| Get the next free filename using "name + number (3 digits) + extension" maximum 1000 files then start always giving 999. More...
|
|
bool | filesystem::is_userdata_initialized () |
|
const std::string | filesystem::get_version_path_suffix (const version_info &version) |
|
const std::string & | filesystem::get_version_path_suffix () |
|
static void | filesystem::setup_user_data_dir () |
|
void | filesystem::set_user_data_dir (std::string newprefdir) |
|
bool | filesystem::rename_dir (const std::string &old_dir, const std::string &new_dir) |
|
static void | filesystem::set_cache_path (bfs::path newcache) |
|
void | filesystem::set_cache_dir (const std::string &newcachedir) |
|
static const bfs::path & | filesystem::get_user_data_path () |
|
std::string | filesystem::get_user_data_dir () |
|
std::string | filesystem::get_logs_dir () |
|
std::string | filesystem::get_cache_dir () |
|
std::vector< other_version_dir > | filesystem::find_other_version_saves_dirs () |
| Searches for directories containing saves created by other versions of Wesnoth. More...
|
|
std::string | filesystem::get_cwd () |
|
bool | filesystem::set_cwd (const std::string &dir) |
|
std::string | filesystem::get_exe_path () |
|
std::string | filesystem::get_exe_dir () |
|
std::string | filesystem::get_wesnothd_name () |
|
bool | filesystem::make_directory (const std::string &dirname) |
|
bool | filesystem::delete_directory (const std::string &dirname, const bool keep_pbl) |
|
bool | filesystem::delete_file (const std::string &filename) |
|
std::vector< uint8_t > | filesystem::read_file_binary (const std::string &fname) |
|
std::string | filesystem::read_file_as_data_uri (const std::string &fname) |
|
std::string | filesystem::read_file (const std::string &fname) |
| Basic disk I/O - read file. More...
|
|
filesystem::scoped_istream | filesystem::istream_file (const std::string &fname, bool treat_failure_as_error) |
|
filesystem::scoped_ostream | filesystem::ostream_file (const std::string &fname, std::ios_base::openmode mode, bool create_directory) |
|
void | filesystem::write_file (const std::string &fname, const std::string &data, std::ios_base::openmode mode=std::ios_base::binary) |
| Throws io_exception if an error occurs. More...
|
|
void | filesystem::copy_file (const std::string &src, const std::string &dest) |
| Read a file and then writes it back out. More...
|
|
bool | filesystem::create_directory_if_missing (const std::string &dirname) |
| Creates a directory if it does not exist already. More...
|
|
bool | filesystem::create_directory_if_missing_recursive (const std::string &dirname) |
| Creates a recursive directory tree if it does not exist already. More...
|
|
bool | filesystem::is_directory (const std::string &fname) |
| Returns true if the given file is a directory. More...
|
|
bool | filesystem::file_exists (const std::string &name) |
| Returns true if a file or directory with such name already exists. More...
|
|
std::time_t | filesystem::file_modified_time (const std::string &fname) |
| Get the modification time of a file. More...
|
|
bool | filesystem::is_map (const std::string &filename) |
| Returns true if the file ends with the mapfile extension. More...
|
|
bool | filesystem::is_cfg (const std::string &filename) |
| Returns true if the file ends with the wmlfile extension. More...
|
|
bool | filesystem::is_mask (const std::string &filename) |
| Returns true if the file ends with the maskfile extension. More...
|
|
bool | filesystem::is_gzip_file (const std::string &filename) |
| Returns true if the file ends with '.gz'. More...
|
|
bool | filesystem::is_bzip2_file (const std::string &filename) |
| Returns true if the file ends with '.bz2'. More...
|
|
int | filesystem::file_size (const std::string &fname) |
| Returns the size of a file, or -1 if the file doesn't exist. More...
|
|
int | filesystem::dir_size (const std::string &path) |
| Returns the sum of the sizes of the files contained in a directory. More...
|
|
std::string | filesystem::base_name (const std::string &file, const bool remove_extension=false) |
| Returns the base filename of a file, with directory name stripped. More...
|
|
std::string | filesystem::directory_name (const std::string &file) |
| Returns the directory name of a file, with filename stripped. More...
|
|
std::string | filesystem::nearest_extant_parent (const std::string &file) |
| Finds the nearest parent in existence for a file or directory. More...
|
|
bool | filesystem::is_path_sep (char c) |
| Returns whether c is a path separator. More...
|
|
char | filesystem::path_separator () |
| Returns the standard path separator for the current platform. More...
|
|
bool | filesystem::is_root (const std::string &path) |
| Returns whether the path is the root of the file hierarchy. More...
|
|
std::string | filesystem::root_name (const std::string &path) |
| Returns the name of the root device if included in the given path. More...
|
|
bool | filesystem::is_relative (const std::string &path) |
| Returns whether the path seems to be relative. More...
|
|
std::string | filesystem::normalize_path (const std::string &path, bool normalize_separators=false, bool resolve_dot_entries=false) |
| Returns the absolute path of a file. More...
|
|
bool | filesystem::to_asset_path (std::string &abs_path, std::string addon_id, std::string asset_type) |
| Helper function to convert absolute path to wesnoth relative path. More...
|
|
static void | filesystem::init_binary_paths () |
|
void | filesystem::clear_binary_paths_cache () |
|
static bool | filesystem::is_legal_file (const std::string &filename_str) |
|
const std::vector< std::string > & | filesystem::get_binary_paths (const std::string &type) |
| Returns a vector with all possible paths to a given type of binary, e.g. More...
|
|
utils::optional< std::string > | filesystem::get_binary_file_location (const std::string &type, const std::string &filename) |
| Returns a complete path to the actual file of a given type, if it exists. More...
|
|
utils::optional< std::string > | filesystem::get_binary_dir_location (const std::string &type, const std::string &filename) |
| Returns a complete path to the actual directory of a given type, if it exists. More...
|
|
utils::optional< std::string > | filesystem::get_wml_location (const std::string &path, const utils::optional< std::string > ¤t_dir=utils::nullopt) |
| Returns a translated path to the actual file or directory, if it exists. More...
|
|
std::string | filesystem::get_short_wml_path (const std::string &filename) |
| Returns a short path to filename, skipping the (user) data directory. More...
|
|
utils::optional< std::string > | filesystem::get_independent_binary_file_path (const std::string &type, const std::string &filename) |
| Returns an asset path to filename for binary path-independent use in saved games. More...
|
|
std::string | filesystem::get_program_invocation (const std::string &program_name) |
| Returns the appropriate invocation for a Wesnoth-related binary, assuming that it is located in the same directory as the running wesnoth binary. More...
|
|
std::string | filesystem::sanitize_path (const std::string &path) |
| Sanitizes a path to remove references to the user's name. More...
|
|
utils::optional< std::string > | filesystem::get_localized_path (const std::string &file, const std::string &suff="") |
| Returns the localized version of the given filename, if it exists. More...
|
|
utils::optional< std::string > | filesystem::get_addon_id_from_path (const std::string &location) |
| Returns the add-on ID from a path. More...
|
|