How can I get the names of files in a given folder name at Matlab?
You should use the dir function. Like so:
allFiles = dir( 'c:\my\folder' ); allNames = { allFiles.name };