removeShutdownFile

(Not recommended) Remove shutdown file from project shutdown list

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

Description

example

removeShutdownFile(proj, file) removes the shutdown file from the shutdown list in the project proj.

Examples

collapse all

Open the airframe project and create a project object.

sldemo_slproject_airframe
proj = simulinkproject;

Specify executable MATLAB® code to run as the project shuts down.

     filepath = fullfile('utilities', 'rebuild_s_functions.m');

Automatically run the file when the project closes, by making it a shutdown file.

addShutdownFile(project, filepath);

Remove the shutdown file.

removeShutdownFile(project, filepath);

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

Example: ‘utilities/myscript.m’

Compatibility Considerations

expand all

Not recommended starting in R2019a

Introduced in R2017b