delete files

9 visualizaciones (últimos 30 días)
Baba
Baba el 15 de Nov. de 2011
How would I delete all files containing word "DIN" that are located in several subfolders of a directory?

Respuestas (2)

Walter Roberson
Walter Roberson el 15 de Nov. de 2011
Use rdelete from this contribution

Daniel Shub
Daniel Shub el 15 de Nov. de 2011
I wouldn't use MATLAB for this ...
On Linux
find ./ -type f -name *DIN* -exec rm {} \;
I am not sure of the syntax of find on Windows, but I think it is similar.

Categorías

Más información sobre Environment and Settings en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by