Skip to content
Snippets Groups Projects

Resolve "Load/Save SFG to file"

Closed Jacob Wahlman requested to merge 66-load-save-sfg-to-file into develop
Files
2
+ 7
4
@@ -20,15 +20,18 @@ def save_structure(struct: AbstractOperation, _path: Optional[str] = None, _name
Keyword Arguments:
_path: The path (str) to which the structure will be saved.
_name: The name (str) of the file to be saved. Only used if _path is not defined and is not None.
_name: The name (str) of the file to be saved. Only used if _path is None.
"""
try:
_name = _name if _name is not None else f"{struct.type_name}.pickle"
if _path is None:
_name = _name if _name is not None else f"{struct.type_name}.pickle"
_path = path.join(getcwd(), _name)
print(_path)
index = 1
while path.exists(_path):
_path = path.join(getcwd(), f"{struct.type_name}({index}).pickle")
index += 1
with open(_path, "wb") as handle:
dill.dump(struct, handle, protocol=dill.HIGHEST_PROTOCOL)
except Exception as e:
Loading