removePath

(Not recommended) Remove folder from project path

simulinkproject is not recommended. Use currentProject or openProject instead. For more information, see Compatibility Considerations.

Description

example

removePath(project, folder) removes a folder in a project from the current project path. The folder must be in the project.

Examples

collapse all

sldemo_slproject_airframe;
project = simulinkproject; 

Create a new folder.

 folderpath = fullfile(project.RootFolder,'folder');
 mkdir(filepath);

Add this new folder to the project.

 projectFile = addFile(project,folderpath); 

Add the new folder to the project path.

folderpath = addPath(project,folderpath);

Remove the new folder from the project path.

removePath(project,folderpath)

Input Arguments

collapse all

Project, specified as a project object. Use simulinkproject to create a project object to manipulate a project at the command line.

Path of the folder to remove relative to the project root folder, specified as a character vector. The folder must be within the root folder.

Example: models/myfolder

Compatibility Considerations

expand all

Not recommended starting in R2019a

Introduced in R2017a