📂 golxzn::os::filesystem 📂 1.6.5
golxzn filesystem submodule
|
Functions | |
static error | golxzn::os::filesystem::write_binary (const std::wstring_view path, const details::data_view< byte > &data) |
Write binary data to a file. | |
static error | golxzn::os::filesystem::write_binary (const std::wstring_view path, const std::initializer_list< byte > data) |
Write binary data to a file. | |
static error | golxzn::os::filesystem::append_binary (const std::wstring_view path, const details::data_view< byte > &data) |
Append binary data to a file. | |
static error | golxzn::os::filesystem::append_binary (const std::wstring_view path, const std::initializer_list< byte > data) |
Append binary data to a file. | |
static error | golxzn::os::filesystem::write_text (const std::wstring_view path, const std::string_view text) |
Write text data to a file. | |
static error | golxzn::os::filesystem::append_text (const std::wstring_view path, const std::string_view text) |
Append text data to a file. | |
static error | golxzn::os::filesystem::write_text (const std::wstring_view path, const std::wstring_view text) |
Write text data to a file. | |
static error | golxzn::os::filesystem::append_text (const std::wstring_view path, const std::wstring_view text) |
Append text data to a file. | |
|
static |
Append binary data to a file.
path | Path to the file |
data | Data to write to the file |
|
static |
Append binary data to a file.
path | Path to the file |
data | Data to write to the file |
|
static |
Append text data to a file.
path | Path to the file |
text | Text to write to the file |
|
static |
Append text data to a file.
path | Path to the file |
text | Text to write to the file |
|
static |
Write binary data to a file.
path | Path to the file |
data | Data to write to the file |
|
static |
Write binary data to a file.
path | Path to the file |
data | Data to write to the file |
|
static |
Write text data to a file.
path | Path to the file |
text | Text to write to the file |
|
static |
Write text data to a file.
path | Path to the file |
text | Text to write to the file |