| 612 | } |
| 613 | |
| 614 | bool SC::FileSystem::existsAndIsFile(StringSpan file) |
| 615 | { |
| 616 | StringSpan encodedPath; |
| 617 | SC_TRY(convert(file, fileFormatBuffer1, fileTransportBuffer1, &encodedPath)); |
| 618 | return FileSystem::Operations::existsAndIsFile(encodedPath); |
| 619 | } |
| 620 | |
| 621 | bool SC::FileSystem::existsAndIsLink(StringSpan file) |
| 622 | { |