Load an existing project
proj = openProject(projectPath)
example
proj = openProject(projectPath) loads the project in the specified file or folder. If any projects are currently open, MATLAB® closes them before loading the specified project.
proj
projectPath
collapse all
Open an existing project from a folder called "C:/projects/project1/".
"C:/projects/project1/"
proj = openProject("C:/projects/project1/")
Full path to the project .prj file or project root folder, specified as a character vector or string scalar.
.prj
Example: "C:/projects/project1/myProject.prj"
"C:/projects/project1/myProject.prj"
Example: "C:/projects/project1/"
matlab.project.Project
Project, returned as a matlab.project.Project object. Use the matlab.project.Project object to programmatically manipulate the currently open project.
currentProject