-
Notifications
You must be signed in to change notification settings - Fork 142
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
CSV.write somehow cannot write file with name con.csv
in Windows?!
#1111
Comments
Can you share the error you're seeing? |
No error but the generated file does not exist |
then why there is no error? |
These names behave like files, i.e. they support open, write and read, but they do different things than you expect, see e.g. https://msdn.microsoft.com/en-us/library/aa365247(VS.85).aspx. There is simply no way to generate a file on Win-Os that with the basename "con". Renaming also doesn't work. if lowercase(splitext(basename(filename))[1]) == "con"
@info "Filename '$(uppercase(basename(filename)))' not supported under Windows"
end |
MWE:
Julia version: 1.9.2
Windows version: Windows 10 Enterprise 22H2
The text was updated successfully, but these errors were encountered: