Documentation

addFolderIncludingChildFiles

Add folder and child files to万博1manbetxProject

Syntax

addFolderIncludingChildFiles(proj,folder)

Description

example

addFolderIncludingChildFiles(proj,folder)adds a folder and all child files to the projectproj.

Examples

collapse all

Open the airframe project and create a project object.

sldemo_slproject_airframe proj = simulinkproject;

Create a new folder in the project folder.

new_folder_path = fullfile(proj.RootFolder,'new_folder') mkdir(new_folder_path);

Create a new folder in the previous folder.

new_sub_folder_path = fullfile(new_folder_path,'new_sub_folder'mkdir (new_sub_folder_path);

Create a new file in the folder.

filepath = fullfile(new_sub_folder_path,'new_model_in_subfolder.slx') new_system('new_model_in_subfolder'); save_system('new_model_in_subfolder', filepath)

Add this new folder and child files to the project.

projectFile = addFolderIncludingChildFiles(proj, new_folder_path)

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 add relative to the project root folder, specified as a character vector or string. The folder must be within the root folder.

Example:‘models’

See Also

Functions

Introduced in R2015b

Was this topic helpful?