| 605 | } |
| 606 | |
| 607 | bool SC::FileSystem::existsAndIsDirectory(StringSpan directory) |
| 608 | { |
| 609 | StringSpan encodedPath; |
| 610 | SC_TRY(convert(directory, fileFormatBuffer1, fileTransportBuffer1, &encodedPath)); |
| 611 | return FileSystem::Operations::existsAndIsDirectory(encodedPath); |
| 612 | } |
| 613 | |
| 614 | bool SC::FileSystem::existsAndIsFile(StringSpan file) |
| 615 | { |