如何使用openFile在文件夹中创建pytable?

时间:2012-07-16 12:14:25

标签: python pytables

我正在使用Pytables,我想知道如何在文件夹中创建一个h5数据库。

例如,它很容易创建一个像这样的数据库文件:

from tables import *
beta = openFile("test2.h5",mode = 'w')

这会在python目录中创建一个文件。如果我想在子文件夹中创建文件test2.h5怎么办?如何更改创建文件的目录?

1 个答案:

答案 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

中创建一个新文件