Filter löschen
Filter löschen

How to delete text files except one.?

20 Ansichten (letzte 30 Tage)
Lalit Patil
Lalit Patil am 16 Feb. 2013
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
José-Luis am 16 Feb. 2013
  1. Copy that file somewere else ( copyfile() ), delete, copy back.
  2. Get list of all files ( dir() ), delete xyz from list, delete all files in list
Lalit Patil
Lalit Patil am 16 Feb. 2013
Can i do your listed operation using MATLAB.?

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Azzi Abdelmalek
Azzi Abdelmalek am 16 Feb. 2013
yourfolder='d:/test/';
f=dir([yourfolder '*.txt'])
f={f.name}
n=find(strcmp(f,'file.txt'));
f{n}=[]
for k=1:numel(f);
delete([yourfolder f{k}])
end

Weitere Antworten (0)

Kategorien

Mehr zu File Operations finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by