我正在使用Pytables,我想知道如何在文件夹中创建一个h5数据库。
例如,它很容易创建一个像这样的数据库文件:
from tables import *
beta = openFile("test2.h5",mode = 'w')
这会在python目录中创建一个文件。如果我想在子文件夹中创建文件test2.h5怎么办?如何更改创建文件的目录?
答案 0 :(得分:0)
import os
import tables
path = '/path/to/your/h5_files'
beta = tables.openFile(os.path.join(path, "test2.h5"), mode='w')
在/path/to/your/h5_files/test2.h5