📂 golxzn::os::filesystem 📂 1.6.5
golxzn filesystem submodule
|
This is the complete list of members for golxzn::os::filesystem, including all inherited members.
append_binary(const std::wstring_view path, const details::data_view< byte > &data) | golxzn::os::filesystem | static |
append_binary(const std::wstring_view path, const std::initializer_list< byte > data) | golxzn::os::filesystem | static |
append_binary(const std::string_view path, const details::data_view< byte > &data) | golxzn::os::filesystem | static |
append_binary(const std::string_view path, const std::initializer_list< byte > data) | golxzn::os::filesystem | static |
append_text(const std::wstring_view path, const std::string_view text) | golxzn::os::filesystem | static |
append_text(const std::wstring_view path, const std::wstring_view text) | golxzn::os::filesystem | static |
append_text(const std::string_view path, const std::string_view text) | golxzn::os::filesystem | static |
append_text(const std::string_view path, const std::wstring_view text) | golxzn::os::filesystem | static |
application_name() noexcept | golxzn::os::filesystem | static |
assets_directory() noexcept | golxzn::os::filesystem | static |
associate(std::wstring_view protocol, std::wstring &&prefix) noexcept | golxzn::os::filesystem | static |
associate(const std::string_view protocol, const std::string_view prefix) noexcept | golxzn::os::filesystem | static |
associations() noexcept | golxzn::os::filesystem | static |
associations_type typedef | golxzn::os::filesystem | |
current_directory() | golxzn::os::filesystem | static |
default_application_name | golxzn::os::filesystem | static |
default_application_name_narrow | golxzn::os::filesystem | static |
default_assets_directory_name | golxzn::os::filesystem | static |
default_assets_directory_name_narrow | golxzn::os::filesystem | static |
entries(const std::wstring_view path) | golxzn::os::filesystem | static |
entries(const std::string_view path) | golxzn::os::filesystem | static |
exists(const std::wstring_view path) noexcept | golxzn::os::filesystem | static |
exists(const std::string_view path) noexcept | golxzn::os::filesystem | static |
get_association(const std::wstring_view protocol) noexcept | golxzn::os::filesystem | static |
get_association(const std::string_view protocol) noexcept | golxzn::os::filesystem | static |
initialize(const std::wstring_view application_name, const std::wstring_view assets_path=default_assets_directory_name) | golxzn::os::filesystem | static |
initialize(const std::string_view application_name, const std::string_view assets_path=default_assets_directory_name_narrow) | golxzn::os::filesystem | static |
is_directory(const std::wstring_view path) | golxzn::os::filesystem | static |
is_directory(const std::string_view path) | golxzn::os::filesystem | static |
is_file(const std::wstring_view path) | golxzn::os::filesystem | static |
is_file(const std::string_view path) | golxzn::os::filesystem | static |
join(std::wstring &left, std::wstring_view right) noexcept | golxzn::os::filesystem | static |
join(std::wstring_view left, std::wstring_view right) noexcept | golxzn::os::filesystem | static |
join(std::string &left, std::string_view right) noexcept | golxzn::os::filesystem | static |
join(std::string_view left, std::string_view right) noexcept | golxzn::os::filesystem | static |
make_directory(const std::wstring_view path) | golxzn::os::filesystem | static |
make_directory(const std::string_view path) | golxzn::os::filesystem | static |
none | golxzn::os::filesystem | static |
none_narrow | golxzn::os::filesystem | static |
normalize(std::wstring_view path) | golxzn::os::filesystem | static |
normalize(const std::string_view path) | golxzn::os::filesystem | static |
OK | golxzn::os::filesystem | inlinestatic |
parent_directory(std::wstring &path) noexcept | golxzn::os::filesystem | static |
parent_directory(std::wstring_view path) noexcept | golxzn::os::filesystem | static |
parent_directory(std::string &path) noexcept | golxzn::os::filesystem | static |
parent_directory(std::string_view path) noexcept | golxzn::os::filesystem | static |
protocol_separator | golxzn::os::filesystem | static |
protocol_separator_narrow | golxzn::os::filesystem | static |
read_binary(const std::wstring_view path) | golxzn::os::filesystem | static |
read_binary(const std::wstring_view path) -> std::enable_if_t< std::is_constructible_v< Custom, std::vector< byte > >, Custom > | golxzn::os::filesystem | static |
read_binary(const std::string_view path) | golxzn::os::filesystem | static |
read_binary(const std::string_view path) -> std::enable_if_t< std::is_constructible_v< Custom, std::vector< byte > >, Custom > | golxzn::os::filesystem | static |
read_shared_binary(const std::wstring_view path) -> std::enable_if_t< std::is_constructible_v< Custom, std::vector< byte > >, std::shared_ptr< Custom > > | golxzn::os::filesystem | static |
read_shared_binary(const std::string_view path) -> std::enable_if_t< std::is_constructible_v< Custom, std::vector< byte > >, std::shared_ptr< Custom > > | golxzn::os::filesystem | static |
read_shared_text(const std::wstring_view path) -> std::enable_if_t< std::is_constructible_v< Custom, std::string >, std::shared_ptr< Custom > > | golxzn::os::filesystem | static |
read_shared_text(const std::string_view path) -> std::enable_if_t< std::is_constructible_v< Custom, std::string >, std::shared_ptr< Custom > > | golxzn::os::filesystem | static |
read_text(const std::wstring_view path) | golxzn::os::filesystem | static |
read_text(const std::wstring_view path) -> std::enable_if_t< std::is_constructible_v< Custom, std::string >, Custom > | golxzn::os::filesystem | static |
read_text(const std::string_view path) | golxzn::os::filesystem | static |
read_text(const std::string_view path) -> std::enable_if_t< std::is_constructible_v< Custom, std::string >, Custom > | golxzn::os::filesystem | static |
read_unique_binary(const std::wstring_view path) -> std::enable_if_t< std::is_constructible_v< Custom, std::vector< byte > >, std::unique_ptr< Custom > > | golxzn::os::filesystem | static |
read_unique_binary(const std::string_view path) -> std::enable_if_t< std::is_constructible_v< Custom, std::vector< byte > >, std::unique_ptr< Custom > > | golxzn::os::filesystem | static |
read_unique_text(const std::wstring_view path) -> std::enable_if_t< std::is_constructible_v< Custom, std::string >, std::unique_ptr< Custom > > | golxzn::os::filesystem | static |
read_unique_text(const std::string_view path) -> std::enable_if_t< std::is_constructible_v< Custom, std::string >, std::unique_ptr< Custom > > | golxzn::os::filesystem | static |
remove(const std::wstring_view path) | golxzn::os::filesystem | static |
remove(const std::string_view path) | golxzn::os::filesystem | static |
remove_directory(const std::wstring_view path) | golxzn::os::filesystem | static |
remove_directory(const std::string_view path) | golxzn::os::filesystem | static |
remove_file(const std::wstring_view path) | golxzn::os::filesystem | static |
remove_file(const std::string_view path) | golxzn::os::filesystem | static |
separator | golxzn::os::filesystem | static |
separator_narrow | golxzn::os::filesystem | static |
set_application_name(const std::wstring_view application_name) noexcept | golxzn::os::filesystem | static |
set_application_name(const std::string_view application_name) noexcept | golxzn::os::filesystem | static |
to_narrow(const std::wstring_view wstr) noexcept | golxzn::os::filesystem | static |
to_wide(const std::string_view str) noexcept | golxzn::os::filesystem | static |
user_data_directory() noexcept | golxzn::os::filesystem | static |
write_binary(const std::wstring_view path, const details::data_view< byte > &data) | golxzn::os::filesystem | static |
write_binary(const std::wstring_view path, const std::initializer_list< byte > data) | golxzn::os::filesystem | static |
write_binary(const std::string_view path, const details::data_view< byte > &data) | golxzn::os::filesystem | static |
write_binary(const std::string_view path, const std::initializer_list< byte > data) | golxzn::os::filesystem | static |
write_text(const std::wstring_view path, const std::string_view text) | golxzn::os::filesystem | static |
write_text(const std::wstring_view path, const std::wstring_view text) | golxzn::os::filesystem | static |
write_text(const std::string_view path, const std::string_view text) | golxzn::os::filesystem | static |
write_text(const std::string_view path, const std::wstring_view text) | golxzn::os::filesystem | static |