![]() |
Bitcoin ABC
0.26.3
P2P Digital Currency
|
Filesystem operations and types. More...
Classes | |
class | path |
Path class wrapper to prepare application code for transition from boost::filesystem library to std::filesystem implementation. More... | |
Functions | |
static path | u8path (const std::string &string) |
static path | system_complete (const path &p) |
static bool | exists (const path &p) |
static auto | quoted (const std::string &s) |
static path | operator+ (path p1, path p2) |
static std::string | PathToString (const path &path) |
Convert path object to byte string. More... | |
static path | PathFromString (const std::string &string) |
Convert byte string to path object. More... | |
Filesystem operations and types.
|
inlinestatic |
|
inlinestatic |
Convert byte string to path object.
Inverse of PathToString.
Definition at line 147 of file fs.h.
|
inlinestatic |
Convert path object to byte string.
On POSIX, paths natively are byte strings so this is trivial. On Windows, paths natively are Unicode, so an encoding step is necessary.
The inverse of PathToString is PathFromString. The strings returned and parsed by these functions can be used to call POSIX APIs, and for roundtrip conversion, logging, and debugging. But they are not guaranteed to be valid UTF-8, and are generally meant to be used internally, not externally. When communicating with external programs and libraries that require UTF-8, fs::path::u8string() and fs::u8path() methods can be used. For other applications, if support for non UTF-8 paths is required, or if higher-level JSON or XML or URI or C-style escapes are preferred, it may be also be appropriate to use different path encoding functions.
Implementation note: On Windows, the std::filesystem::path(string) constructor and std::filesystem::path::string() method are not safe to use here, because these methods encode the path using C++'s narrow multibyte encoding, which on Windows corresponds to the current "code page", which is unpredictable and typically not able to represent all valid paths. So std::filesystem::path::u8string() and std::filesystem::u8path() functions are used instead on Windows. On POSIX, u8string/u8path functions are not safe to use because paths are not always valid UTF-8, so plain string methods which do not transform the path there are used.
Definition at line 134 of file fs.h.
|
inlinestatic |