Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Pytables,想知道如何在文件夹中创建 h5 数据库。
例如,创建这样的数据库文件很容易:
from tables import * beta = openFile("test2.h5",mode = 'w')
这会在 python 目录中创建一个文件。如果我想在子文件夹中创建文件 test2.h5 怎么办?如何更改创建文件的目录?
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
/path/to/your/h5_files/test2.h5