save_edb#
- EDBCommon.save_edb(edb_path=None)[source]#
Save the EDB project.
- Parameters:
- edb_path
str,optional Full path to the
aedbfolder. The default isNone.
- edb_path
- Returns:
- bool
Truewhen successful,Falsewhen 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()