标签: matlab
我想使用matlab删除文件夹中的文件(可能是文本文件)。
matlab是否提供相关功能,还是有其他方法吗?
答案 0 :(得分:3)
删除/ mytests /文件夹中扩展名为.mat的所有文件:
delete('/mytests/*.mat')
有关文档