Main Content

addStartupFile

Add startup file to project

Description

example

addStartupFile(proj,file) adds a startup file to the specified project. Startup files automatically run (if they are .m and .p files), load (if they are .mat files), or open (if they are Simulink® models) when you open the project.

Examples

collapse all

Open the Times Table App project. Use currentProject to create a project object from the currently loaded project.

openExample("matlab/TimesTableProjectExample")
proj = currentProject;

Automatically run the Times Table app when the project opens by making the runTheseTests.m file a startup file.

filepath = fullfile("utilities","runTheseTests.m");
addStartupFile(proj,filepath);

Input Arguments

collapse all

Project, specified as a matlab.project.Project object. Use currentProject to create a project object from the currently loaded project.

Path of the MATLAB® file to add, including the file extension, specified as a character vector or string scalar. Specify the path relative to the project root folder. The file must be within the project root folder.

Version History

Introduced in R2019a