| 173 | } |
| 174 | |
| 175 | bool Platform::RemoveFileIfExists(std::string const & filePath) |
| 176 | { |
| 177 | return IsFileExistsByFullPath(filePath) ? base::DeleteFileX(filePath) : true; |
| 178 | } |
| 179 | |
| 180 | std::string Platform::TmpPathForFile() const |
| 181 | { |
no test coverage detected