-2
我成功地將文件存儲在一個循環中。現在我有1000個文件從1到1000,我想閱讀它們,但它不起作用。在循環中讀取文件[julia]?
for i in 1:1000
h5open("path to file /file$i.h5", "w") do file
write(file, "a", x) # alternatively, say "@write file a"
end
end
寫作效果很好。但是在閱讀它時不起作用。
for i in 1:1000
h5open(" path to files/file$i.h5", "w") do file
read(file, "a", x) # alternatively, say "@write file a"
end
end
如何解決這個問題?
謝謝