h5write on gvfs shared folder (windows shared folder connected to linux pc)

1 view (last 30 days)
I'm connected to a shared windows drive, And for this I has used the gnome virtual file system.
Thus my path looks something like:
/run/user/1000/gvfs/smb-share:server=some.cool.server,share=someshare/path/to/my/files
When running
h5create('foo.h5','/bar', [3 3])
h5write('foo.h5','/bar', magic(3),[1 1], [3 3])
In my local folders I don't have a problem, But when running on the location mentioned above I can create the h5 file, but not write to it (I can also read it without problems and h5disp is fine too)
I get the errorError using hdf5lib2 The filename specified was either not found on the MATLAB path or it contains unsupported characters.
Error in H5F.open (line 48)
file_id = H5ML.hdf5lib2('H5Fopen', filename, flags, fapl);
Error in h5write (line 72)
file_id = H5F.open(Filename,flags,fapl);
Is there a good way of fixing this without changing the mount point of the shared drive? While that is possible mounting with gvfs is nice and easy (This is also the first problem I've had with the naming scheme of gvfs)
/Thorbjørn

Answers (0)

Products


Release

R2018a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!