Disallow implicit std::string conversion for copy_file to avoid locale-dependent encoding on Windows.
| 87 | // Disallow implicit std::string conversion for copy_file |
| 88 | // to avoid locale-dependent encoding on Windows. |
| 89 | static inline bool copy_file(const path& from, const path& to, copy_options options) |
| 90 | { |
| 91 | return std::filesystem::copy_file(from, to, options); |
| 92 | } |
| 93 | |
| 94 | /** |
| 95 | * Convert path object to a byte string. On POSIX, paths natively are byte |
no outgoing calls
no test coverage detected