| 953 | } |
| 954 | |
| 955 | Result<bool> DeleteDirTree(const PlatformFilename& dir_path, bool allow_not_found) { |
| 956 | return DeleteDirContents(dir_path, allow_not_found, /*remove_top_dir=*/true); |
| 957 | } |
| 958 | |
| 959 | Result<bool> DeleteFile(const PlatformFilename& file_path, bool allow_not_found) { |
| 960 | #ifdef _WIN32 |