mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-01 02:42:05 +00:00
Show filename in exception raised by expandFilename on windows (#10365)
This commit is contained in:
committed by
Andreas Rumpf
parent
8399e0f78a
commit
3cc39c2eb9
@@ -1427,7 +1427,7 @@ proc expandFilename*(filename: string): string {.rtl, extern: "nos$1",
|
||||
for x in walkFiles(result.string):
|
||||
result = x
|
||||
if not existsFile(result) and not existsDir(result):
|
||||
raise newException(OSError, "file does not exist")
|
||||
raise newException(OSError, "file '" & result & "' does not exist")
|
||||
else:
|
||||
# according to Posix we don't need to allocate space for result pathname.
|
||||
# But we need to free return value with free(3).
|
||||
|
||||
Reference in New Issue
Block a user