Filter löschen
Filter löschen

Checking the existence of any file with a specific extension in a directory

52 Ansichten (letzte 30 Tage)
I require to check whether any file exists with a specific extension in a given folder. Let us say, I look for whether any .pdf file is present in my working directory. MATLAB does not accept wildcard commands like
exist('*.m')
Any solution?

Akzeptierte Antwort

Stephen23
Stephen23 am 11 Mär. 2015
Bearbeitet: Stephen23 am 12 Mär. 2015
Use dir instead. If you only want to know about the existence, then you could simply check if the returned structure is not empty:
~isempty(dir('*.m'))

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