是否可以更改外部库保存的文件的保存路径?

Is it possible to change save path of a file saved by an external library?

我在 python 中使用了一个名为 pyansys 的库,我在其中使用了一个名为 save_as_vtk 的方法。

它是:documentation

此方法为我生成一个文件并将其保存到我的工作目录中。我希望将该文件保存在其他地方...我不想移动它,因为有时它超过 20 Gb,而且会花费太长时间。

有人有想法吗?

谢谢!

我是 pyansys 包的维护者。

已在 https://github.com/akaszynski/pyansys/issues/219

中回答

此处重复:

It appears that ResultFile.save_as_vtk already has a filename parameter:

def save_as_vtk(self, filename, rsets=None, result_types=['ENS']):
    """Writes results to a vtk readable file.

    The file extension will select the type of writer to use.
    ``'.vtk'`` will use the legacy writer, while ``'.vtu'`` will
    select the VTK XML writer.

    Parameters
    ----------
    filename : str
        Filename of grid to be written.  The file extension will
        select the type of writer to use.  ``'.vtk'`` will use the
        legacy writer, while ``'.vtu'`` will select the VTK XML
        writer.