FileIO.jl
FileIO.jl copied to clipboard
Main Package for IO, loading all different kind of files
See https://github.com/BioJulia/Libz.jl/issues/68 Libz.jl is no longer maintained, and now recommends folks use CodecZlib instead. In any case, the implementation for Libz.jl is no longer functional. ``` julia> FileIO.load("test.log.gz") Error encountered...
For matlab files we have [MAT.jl](https://github.com/JuliaIO/MAT.jl), uuid = "23992714-dd62-5051-b70f-ba57cb901cac"
I want to register Zarr files. The issue is that Zarr files are not files but directories that contain certain JSON. Is it possible to to this in `FileIO.jl`? https://github.com/JuliaDataCubes/YAXArrays.jl/issues/131
I have a project with longer calculations and have created a macro to automatically save/calculate/reload object. I am using JLD2 for it and there is something similar in [YAXArrays.jl](https://github.com/JuliaDataCubes/YAXArrays.jl/blob/d68a6af605b3c65ca5fa2e9d4489ca959f9c6b6f/src/YAXTools.jl#L103). Do...
I'm running into problems when trying to read Excel files with uppercase extensions: ``` filename = "test.XLS" df = DataFrame(load(filename, "Sheet1")) ``` Leads to ```Fatal error: ERROR: NoDecodeDelegateForThisImageFormat `XLS' @...
We have several packages that might handle a specific type of file (and will return an object based on those file's contents). Does the presence of the centralized registry mean...
```julia julia> using CairoMakie julia> fig = lines(rand(10)); julia> save("test.png", fig) # works CairoScreen{Cairo.CairoSurfaceBase{UInt32}} with surface: Cairo.CairoSurfaceBase{UInt32}(Ptr{Nothing} @0x00007fef60cecfa0, 800.0, 600.0) julia> save("test.png", (fig, )) # wrong argument gives confusing errors...
I want to loop over the following code in an IJulia notebook: ```julia using Images,FileWatching event = watch_file("test.png") if event.timedout display("timeout") end display(load("test.png")) ``` The first execution works as expected,...
Debugging some concurrency issues, I ended up inside the source of `FileIO` and saw that it maintains global state in `sym2loader` and `sym2safer` (and maybe other places) which is not...
I've added a new syntax to JLD2 and I'm wondering if this could be made compatible with FileIO. Current example using `FileIO`: ``` x = 1 y = 2 z...