Write the given binary data into the given file, replacing the file if it pre-exists.
| 65 | void writeFile(std::string const& _file, bytesConstRef _data, bool _writeDeleteRename = false); |
| 66 | /// Write the given binary data into the given file, replacing the file if it pre-exists. |
| 67 | inline void writeFile(std::string const& _file, bytes const& _data, bool _writeDeleteRename = false) { writeFile(_file, bytesConstRef(&_data), _writeDeleteRename); } |
| 68 | inline void writeFile(std::string const& _file, std::string const& _data, bool _writeDeleteRename = false) { writeFile(_file, bytesConstRef(_data), _writeDeleteRename); } |
| 69 | |
| 70 | /// Nicely renders the given bytes to a string, optionally as HTML. |
no outgoing calls