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