@brief Create a new directory, creating also intermediate non existing directories (like posix `mkdir -p`) @param directory Path where to create such directory @return Invalid Result in case of I/O or access error \snippet Tests/Libraries/FileSystem/FileSystemTest.cpp makeDirectoryRecursive
| 266 | /// @return Invalid Result in case of I/O or access error |
| 267 | /// \snippet Tests/Libraries/FileSystem/FileSystemTest.cpp makeDirectoryRecursive |
| 268 | Result makeDirectoryRecursive(StringSpan directory) { return makeDirectoriesRecursive({directory}); } |
| 269 | |
| 270 | /// @brief Creates a symbolic link at location linkFile pointing at sourceFileOrDirectory |
| 271 | /// @param sourceFileOrDirectory The target of the link (can be a folder or directory) |
no outgoing calls