The following is an example of a script that checks the storage location of project files (.jproj).
from pathlib import Path app = designer.GetApplication() # Get the path of the project file PathA = app.GetProjectPath() # Get the folder path pathB = Path(PathA).parent # Display the acquired path print(pathB)


