I want to count how many .set files is in certain folder. How can i do it?
> I want to count how many .set files is in certain folder. How can i do it?
D = dir([FolderName, '\*.set']);
Num = length(D(not([D.isdir])))
Good luck, Jan
"Jan Simon" <matlab.T...@nMINUSsimon.de> wrote in message <hl12u6$smj$1...@fred.mathworks.com>...