Is it possible to get the path of a file using uigetfile() ?
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hamlet López
el 23 de Jun. de 2022
Editada: Hamlet López
el 23 de Jun. de 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 comentarios
Respuesta aceptada
Walter Roberson
el 23 de Jun. de 2022
[filename, filepath] = uigetfile();
if ~ischar(filename); return; end %user cancel
fullname = fullfile(filepath, filename);
fprintf('This is the file path: %s\n', fullname);
1 comentario
Más respuestas (0)
Ver también
Categorías
Más información sobre Environment and Settings en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!