exdir icon indicating copy to clipboard operation
exdir copied to clipboard

Make datasets recursive as in hdf5

Open miladh opened this issue 8 years ago • 3 comments

miladh avatar Feb 03 '17 17:02 miladh

@miladh What needs to be done for this issue to be closed? Do we have a link to HDF5 docs or an example to test?

dragly avatar Mar 15 '17 15:03 dragly

With h5py you can do this:

f_hdf = h5py.File("test.hdf5")
f_hdf.create_group("/some/long/path")
f_hdf.create_dataset("/some/long/path/dset", data=np.array([1, 2, 3]))

Exdir gives NameError because of filename_validation

miladh avatar Mar 13 '18 16:03 miladh

Ah, so this is only about resolving the names. Yes, we should handle that better.

dragly avatar Mar 19 '18 10:03 dragly