| 1244 | } |
| 1245 | |
| 1246 | SC::Result SC::FileSystem::Operations::removeDirectoryRecursive(StringSpan path) |
| 1247 | { |
| 1248 | SC_TRY_MSG(Internal::validatePath(path), "removeDirectoryRecursive: Invalid path"); |
| 1249 | return Internal::removeDirectoryRecursiveInternal(path.getNullTerminatedNative()); |
| 1250 | } |
| 1251 | |
| 1252 | SC::Result SC::FileSystem::Operations::Internal::copyDirectoryRecursive(const wchar_t* source, |
| 1253 | const wchar_t* destination, |
nothing calls this directly
no test coverage detected