MCPcopy Create free account
hub / github.com/Pagghiu/SaneCppLibraries / lstat

Method lstat

Libraries/FileSystem/FileSystem.cpp:654–660  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

652}
653
654SC::Result SC::FileSystem::lstat(StringSpan file, FileStat& fileStat)
655{
656 StringSpan encodedPath;
657 SC_TRY(convert(file, fileFormatBuffer1, fileTransportBuffer1, &encodedPath));
658 SC_TRY(FileSystem::Operations::lstat(encodedPath, fileStat));
659 return Result(true);
660}
661
662SC::Result SC::FileSystem::readSymbolicLink(StringSpan linkFile, StringPath& destination)
663{

Callers 2

FileSystemTest.cppFile · 0.80
permissionsMethod · 0.80

Calls 2

windowsStatFunction · 0.85
ResultClass · 0.50

Tested by 1

permissionsMethod · 0.64