How to select a folder using uigetdir and use folder location later?
Show older comments
After acccessing a particular folder using uigetdir, i want to use folder location later in my code.
In the code mentioned below, how i can get the folder location details in the DOTTED place.
Please help me with that.
Thanks!
directory_name = uigetdir;
File01 = dir(fullfile(directory_name,'*.png'));
---
srcFiles02 = dir('F:\Matlab\Images\Constants\*.png');
---
% Comparision
for i = 1 : image01
Name01 = strcat(..........,File01(i).name);
---
Accepted Answer
More Answers (0)
Categories
Find more on Display Image in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!