5 references to LStat
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\IO\FileSystem.Unix.cs (4)
126
Interop.CheckIo(Interop.Sys.
LStat
(sourceFullPath, out Interop.Sys.FileStatus sourceStat), sourceFullPath);
135
if (Interop.Sys.
LStat
(destFullPath, out destStat) == 0)
225
if (Interop.Sys.
LStat
(sourceFullPath, out sourceStat) == 0 && // source file exists
226
(Interop.Sys.
LStat
(destFullPath, out destStat) != 0 || // dest file does not exist
src\libraries\System.Private.CoreLib\src\System\IO\Path.Unix.cs (1)
19
bool result = Interop.Sys.
LStat
(fullPath, out Interop.Sys.FileStatus fileInfo) == Interop.Errors.ERROR_SUCCESS;