saveIndexDataToFile(file_path, index_data)
この関数は、以下のように実装することができます:
def saveIndexDataToFile(file_path, index_data): with open(file_path, "wb") as open_file: open_file.write(hou.saveIndexDataToString(index_data))
詳細は、hou.loadIndexDataFromString()を参照してください。
See also |