1

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

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

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

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

4

1 回答 1

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

于 2012-07-16T12:16:13.200 回答