| 500 | } |
| 501 | #endif |
| 502 | bool FileUtils::writeDataToFile(const Data& data, std::string_view fullPath) const |
| 503 | { |
| 504 | return FileUtils::writeBinaryToFile(data.getBytes(), data.getSize(), fullPath); |
| 505 | } |
| 506 | #ifndef AX_CORE_PROFILE |
| 507 | void FileUtils::writeDataToFile(Data data, std::string_view fullPath, std::function<void(bool)> callback) const |
| 508 | { |