| 932 | } |
| 933 | |
| 934 | SC::Result SC::FileSystem::Operations::makeDirectory(StringSpan path) |
| 935 | { |
| 936 | SC_TRY_MSG(Internal::validatePath(path), "makeDirectory: Invalid path"); |
| 937 | SC_TRY_WIN32(::CreateDirectoryW(path.getNullTerminatedNative(), nullptr), |
| 938 | "makeDirectory: Failed to create directory"); |
| 939 | return Result(true); |
| 940 | } |
| 941 | |
| 942 | SC::Result SC::FileSystem::Operations::makeDirectoryRecursive(StringSpan path) |
| 943 | { |