save a filename in a variable
19 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
rimbak
am 7 Mär. 2022
Beantwortet: Image Analyst
am 7 Mär. 2022
Hello,
i need to save the filname in a variable because i need the first two numbers of it
exemple : file name : 09_767_766.csv
anyone know how can i do it ? thanks in advance :)
my code :
A = uigetfile
data = detectImportOptions(A)
...
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 7 Mär. 2022
Try this:
% Have user browse for a file, from a specified "starting folder."
% For convenience in browsing, set a starting folder from which to browse.
startingFolder = pwd; % or 'C:\wherever';
if ~isfolder(startingFolder)
% If that folder doesn't exist, just start in the current folder.
startingFolder = pwd;
end
% Get the name of the file that the user wants to use.
defaultFileName = fullfile(startingFolder, '*.*');
[baseFileName, folder] = uigetfile(defaultFileName, 'Select a file');
if baseFileName == 0
% User clicked the Cancel button.
return;
end
fullFileName = fullfile(folder, baseFileName)
data = detectImportOptions(fullFileName)
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Startup and Shutdown finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!