我有以下示例代码将新数据集附加到现有.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)
任何帮助将不胜感激。谢谢!