| 619 | } |
| 620 | |
| 621 | bool SC::FileSystem::existsAndIsLink(StringSpan file) |
| 622 | { |
| 623 | StringSpan encodedPath; |
| 624 | SC_TRY(convert(file, fileFormatBuffer1, fileTransportBuffer1, &encodedPath)); |
| 625 | return FileSystem::Operations::existsAndIsLink(encodedPath); |
| 626 | } |
| 627 | |
| 628 | bool SC::FileSystem::canAccess(StringSpan fileOrDirectory, AccessMode accessMode) |
| 629 | { |