-
Notifications
You must be signed in to change notification settings - Fork 14
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
Enhancement: save and load methods for AbstractPaths #34
Comments
This has been brought up before. #22 (comment) Unfortunately, we'd need to overload a lot of methods in FileIO for that to work nicely. Supporting the FWIW, what does extending |
The main benefit of extending |
Right, but we'd need to modify the |
This is supported as of FileIO 1.3. Unfortunately, many backend file format packages assume filepaths are strings. We'll need to fix each package individually as they come up. |
Extend FileIO to define the save and load methods for
AbstractPath
s.The default behaviour could be to serialize the data to an IOBuffer and call
write(path, bytes)
.The text was updated successfully, but these errors were encountered: