mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
Fix behavior of os.getFileInfo() for symbolic links.
The calls to lstat() and stat() were switched. As a result, links weren't followed for followLink == true and links were followed for followLink == false.
This commit is contained in:
@@ -2033,10 +2033,10 @@ proc getFileInfo*(path: string, followSymlink = true): FileInfo =
|
||||
else:
|
||||
var rawInfo: TStat
|
||||
if followSymlink:
|
||||
if lstat(path, rawInfo) < 0'i32:
|
||||
if stat(path, rawInfo) < 0'i32:
|
||||
raiseOSError(osLastError())
|
||||
else:
|
||||
if stat(path, rawInfo) < 0'i32:
|
||||
if lstat(path, rawInfo) < 0'i32:
|
||||
raiseOSError(osLastError())
|
||||
rawToFormalFileInfo(rawInfo, result)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user