We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
os.walkDir swallows errors returned from C.
eg, if dir doesn't exist, or device has errors, or permissions are bad, the os.walkDir function always returns successfully.
for p in walkDir("/tmpXXXXX"): echo p echo "Hello"
walkDir will never raise an exception.
This affects Nim 0.19.2.
Related Nim forum discussion thread:
https://forum.nim-lang.org/t/4546
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
os.walkDir swallows errors returned from C.
eg, if dir doesn't exist, or device has errors, or permissions are bad, the os.walkDir function always returns successfully.
Example
walkDir will never raise an exception.
This affects Nim 0.19.2.
Related Nim forum discussion thread:
https://forum.nim-lang.org/t/4546
The text was updated successfully, but these errors were encountered: