@brief Removes an empty directory @param directory Empty directory to remove @return Invalid Result if the directory doesn't exist or it's not empty @see makeDirectoryRecursive (for an usage example)
| 232 | /// @return Invalid Result if the directory doesn't exist or it's not empty |
| 233 | /// @see makeDirectoryRecursive (for an usage example) |
| 234 | Result removeEmptyDirectory(StringSpan directory) { return removeEmptyDirectories({directory}); } |
| 235 | |
| 236 | /// @brief Creates new directories that do not already exist |
| 237 | /// @param directories List of paths where to create such directories |
no outgoing calls
no test coverage detected