# save_project

Save current project

# Parameters

file_path : str
path to desired save location.

# Notes

If the specified file_path already exists the file will be overwritten without warning.

# Examples

import os
current_path = os.getcwd()
filename ="slope_stability.gxx"
gx.save_project(file_path=os.path.join(current_path, filename))