Main Content

removeFile

Remove file or folder from project

Description

example

removeFile(proj,fileOrfolder) removes a file or folder from the specified 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;

Remove a file.

removeFile(proj,"source/timesTableGame.m")

Add the file back to the project.

addFile(proj,"source/timesTableGame.m")

Input Arguments

collapse all

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

File or folder to remove, specified as a character vector, string scalar, or a ProjectFile object. If you specify fileOrfolder as a character vector or string scalar, it must contain the path of the file to remove relative to the project root folder, including the file extension. The file or folder must be in the project.

Version History

Introduced in R2019a