MATLAB Function Reference |
Delete files or graphics objects
Graphical Interface
As an alternative to the delete
function, you can delete files using the Current Directory browser.
Syntax
Description
delete filename
deletes the named file from the disk. The filename
may include an absolute pathname or a pathname relative to the current directory. The filename
may also include wildcards, (*
).
delete(h)
deletes the graphics object with handle h
. The function deletes the object without requesting verification even if the object is a window.
delete('filename')
is the function form of delete
. Use this form when the filename is stored in a string.
Remarks
The action that the delete function takes on deleted files depends upon the setting of the MATLAB recycle state. If you set the recycle state to on
, MATLAB moves deleted files to your recycle bin or temporary directory. With the recycle state set to off
(the default), deleted files are permanently removed from the system.
To set the recycle state for all MATLAB sessions, use the Preferences dialog box. Open the Preferences dialog and select General. To enable or disable recycling, click Move files to the recycle bin or Delete files permanently. See General Preferences for MATLAB in the Desktop Tools and Development Environment documentation for more information.
The delete
function deletes files and handles to graphics objects only. Use the rmdir
function to delete directories.
Examples
To delete all files with a .mat
extension in the ../mytests/
directory, type
To delete a directory, use rmdir
rather than delete
:
See Also
recycle
, dir
, edit
, fileparts
, mkdir
, rmdir
, type
delaunayn | delete (ftp) |
© 1994-2005 The MathWorks, Inc.