JuliaIO/JLD2.jl

How to print or show every group name of a JLD2 file

Closed this issue ยท 2 comments

I open a JLD2 file and want to read it, but I forgot the name of the group, How to show all of the group[ name of the file
image

Try

julia> f = jldopen("test.jld2")
JLDFile /test.jld2 (read-only)
 โ””โ”€๐Ÿ”ข foo

julia> keys(f)
1-element Vector{String}:
 "foo"

Try

julia> f = jldopen("test.jld2")
JLDFile /test.jld2 (read-only)
 โ””โ”€๐Ÿ”ข foo

julia> keys(f)
1-element Vector{String}:
 "foo"

Thank you very much!!!