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!