-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
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
readdlm() doesn't properly close file when file opened with a string #8891
Comments
Can you post your |
Are you using Windows? |
On a mac, versioninfo() gives, I am reading and writing to a NFS Drive... Julia Version 0.3.0 Platform Info: |
Also #4664, but there we did something windows-specific since the consequences are worse there. |
It seems that this is fixed. |
I think when we use mmap the file isn't closed until the next GC. |
Just ran into this today. Your OS is not windows, but I think mmap + NFS causes this. Use this and it should work.
#7007 did put a default |
... or even put |
…liaLang#40415) Increased resilience to edge cases where OS is reported Unix-like but Filesystem is abnormal Fixes JuliaLang#8891 Fixes JuliaLang#40352
…liaLang#40415) Increased resilience to edge cases where OS is reported Unix-like but Filesystem is abnormal Fixes JuliaLang#8891 Fixes JuliaLang#40352
…liaLang#40415) Increased resilience to edge cases where OS is reported Unix-like but Filesystem is abnormal Fixes JuliaLang#8891 Fixes JuliaLang#40352
A = readdlm("./data.csv")
This will read the file data.csv properly, however it doesn't close the file upon completion.
works fine, however I wasn't sure if in the first case was a bug or just poor programming on my part.
The text was updated successfully, but these errors were encountered: