I want to select multiple files, import the data from the files and use them in GUI program.
The code I am using to get the multiple files works perectly well:
[FileName,PathName,FilterIndex] = uigetfile('*.txt*','Study Files','MultiSelect','on')
Cols = size(FileName,2);
numfiles = Cols;
for i = 1:numfiles
FileName(i)
entirefile =fullfile(PathName,FileName(i))
end
My problem is when I try to open entire file
. The method I'm trying to use works with a single file but not here.When the code in the loop is:
for i = 1:numfiles
FileName(i)
entirefile =fullfile(PathName,FileName(i))
A = [];
fid = fopen(entirefile);
tline = fgets(fid);
while ischar(tline)
parts = textscan(tline, '%f;');
if numel(parts{1}) > 0
A = [ A ; parts{:}' ];
end
tline = fgets(fid);
end
end
Error using fopen First input must be a file name of type char, or a file identifier of type double.
Error in multiselect (line 14) fid = fopen(entirefile);
It also only gives me the first and last file selected and then only the entirefile
of the first selected file.
Anyone any suggestions on how I could resolve this issue?