-
Notifications
You must be signed in to change notification settings - Fork 16
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
Files ending with .RDS (capitalized) are not recognized as format{RDataSingle} #91
Comments
The mapping of file extension to the file format is defined in FileIO.jl package. |
I see. This was already filed as an (general) issue. Should i create one specifically for the RSingleData case? |
@JohannesNE Thanks! If there's already a general issue, probably you don't have to create one just for .RDS -- until the maintainers of FileIO.jl decide on the case-sensitivity issue, .RDS support is not likely to be implemented. |
Okay. I'll close this issue, and hope others will find it if they run into the same problem. |
A complementary solution would be to introduce a separate |
work around if you don't want to rename the file: using RData, FileIO
complete_dataset = load(File{format"RDataSingle"}("completeDataset.RDS")) |
I tried to load a file (
file.RDS
). This resulted in the errorChanging the file name to
file.rds
fixed it.The text was updated successfully, but these errors were encountered: