MATLAB Function Reference |
Graphical Interface
除了使用 delete
指令外,也可用Current Directory browser來刪除。請在MATLAB的
View 選項中點選 Current Directory 來開啓。
Syntax
delete filename delete(h) delete('filename')
Description
delete filename
刪除指定的檔案。 filename
可以包括絕對路徑或是相對路徑。filename
也可以包含符號 *
。
delete(h)
刪除handle 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')
是函式格式的 delete
。當檔名為字串時,使用此指令。
Examples
在../mytests/
目錄中刪除所有延伸檔名為 .mat
的檔案
delete('../mytests/*.mat')
要是想刪除目錄,要使用 !rmdir
而不是 delete
。
!rmdir mydirectory
See Also
delaunayn | delete (serial) |