Is it possible to get the path of a file using uigetfile() ?

5 visualizaciones (últimos 30 días)
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]);

Respuesta aceptada

Walter Roberson
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
Hamlet López
Hamlet López el 23 de Jun. de 2022
Editada: Hamlet López el 23 de Jun. de 2022
OK, this is what I was looking for. Thank you very much Sir.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Environment and Settings en Help Center y File Exchange.

Productos


Versión

R2015a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by