python h5py:将附加数据集附加到现有h5文件

时间:2017-01-24 16:56:01

标签: python h5py

我有以下示例代码将新数据集附加到现有.h5文件。

import h5py
import numpy as np

file1 = 'sampleFile.h5'
fileIn = h5py.File(file1,'a')
fileIn.create_dataset('addedDataset', (100,1), dtype='i8', data = [0]*100)

但是,我无法在'追加'中打开h5文件。模式开始。 我收到以下错误:

IOError: Unable to create file (Unable to open file: name = 'sampleFile.h5', errno = 17, error message = 'file exists', flags = 15, o_flags = c2)

任何帮助将不胜感激。谢谢!

0 个答案:

没有答案