problem with uigetdir in uploading files from it .
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
i created a push button to browse a directory. It works but then I need to upload pics from this directory.
For the browse push button i used:
global c1;
c1=uigetdir;
and for uploading pictures from the directory i used:
global c1;
srcFiles = dir(c1\'*.jpg');
but i get an error saying 'dir is not defined for double inputs'.
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 28 Mai 2013
filePattern = fullfile(c1, '*.jpg');
srcFiles = dir(filePattern);
2 Kommentare
Weitere Antworten (0)
Siehe auch
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!