save_edb#
- EDBCommon.save_edb(edb_path=None)[source]#
Save the EDB project.
- Parameters:
- edb_path
str
,optional
Full path to the
aedb
folder. The default isNone
.
- edb_path
- Returns:
- bool
True
when successful,False
when failed.
Examples
>>> from ansys.aedt.toolkits.common.backend.api import EDBCommon >>> toolkit_api = EDBCommon() >>> toolkit_api.load_edb("path/to/file") >>> toolkit_api.save_edb("path/to/new_file") >>> toolkit_api.close_edb()