Is it possible to get the path of a file using uigetfile() ?
1 view (last 30 days)
Show older comments
Hamlet López
on 23 Jun 2022
Edited: Hamlet López
on 23 Jun 2022
What I want to do is get the path of a file that user selects, lets say an image is in downloads folder (example: 'C:\Users\%UserName%\Downloads\image.png').
So when executing the script the path of file is saved in a string and showed in command window.
Right now I have no succes with the following, I'm I using the correct functions for this?
filepath = fileparts( uigetfile() );
disp(['This is the file path: ',filepath]);
0 Comments
Accepted Answer
Walter Roberson
on 23 Jun 2022
[filename, filepath] = uigetfile();
if ~ischar(filename); return; end %user cancel
fullname = fullfile(filepath, filename);
fprintf('This is the file path: %s\n', fullname);
More Answers (0)
See Also
Categories
Find more on Migrate GUIDE Apps 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!