How to delete text files except one.?
Ältere Kommentare anzeigen
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 Kommentare
José-Luis
am 16 Feb. 2013
- 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
am 16 Feb. 2013
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu File Operations finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!