| 484 | FileUtils::~FileUtils() {} |
| 485 | |
| 486 | bool FileUtils::writeStringToFile(std::string_view dataStr, std::string_view fullPath) const |
| 487 | { |
| 488 | return FileUtils::writeBinaryToFile(dataStr.data(), dataStr.size(), fullPath); |
| 489 | } |
| 490 | #ifndef AX_CORE_PROFILE |
| 491 | void FileUtils::writeStringToFile(std::string dataStr, |
| 492 | std::string_view fullPath, |
no test coverage detected