How to remove file extension when using ugetfile in app designer?

198 visualizaciones (últimos 30 días)
farzad
farzad el 18 de Nov. de 2020
Respondida: Rik el 18 de Nov. de 2020
Hi All
I use
[filename,pathname] = uigetfile('*.xlsx');% add ur extension post period within parathesis.
fullfilename = fullfile(pathname,filename);
A = xlsread(fullfilename); % if it is a excel file. else use whatever it is.
but then I need to use the filename but without its extension, how do I do that in app designer

Respuesta aceptada

Rik
Rik el 18 de Nov. de 2020
The easiest way to remove an extension is with fileparts:
[p,f,e]=fileparts(fullfilename);
fullfilename=fullfile(p,f);

Más respuestas (0)

Categorías

Más información sobre Package and Share Apps en Help Center y File Exchange.

Productos


Versión

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by