Documentation

removePath

Remove folder from金宝appproject path

Syntax

removePath(project, folder)

Description

example

removePath(project,folder)removes a folder in a Simulink®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. Usesimulinkprojectto create a project object to manipulate a Simulink 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

Introduced in R2017a

Was this topic helpful?