How to delete text files except one.?
显示 更早的评论
In one folder there are so many text files. I want to delete all that files except one named XYZ.txt using matlab.
delete(*.txt)
This function deletes all. So, how to do.?
2 个评论
José-Luis
2013-2-16
- Copy that file somewere else ( copyfile() ), delete, copy back.
- Get list of all files ( dir() ), delete xyz from list, delete all files in list
Lalit Patil
2013-2-16
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 File Operations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!