how can i solve the error Reference to non-existent folder

3 次查看(过去 30 天)
when i try to call ficheiro the error is Reference to non-existent field 'folder'.
arqdir = 'F:\TCC-GENTIL\New Data';
files = dir(fullfile(arqdir,'*.nc'));
ficheiro=fullfile(files(5),files(5).name);
please can someone explain me how can i solve it?

采纳的回答

Walter Roberson
Walter Roberson 2021-9-9
I suspect that your actual code is
arqdir = 'F:\TCC-GENTIL\New Data';
files = dir(fullfile(arqdir,'*.nc'));
ficheiro=fullfile(files(5).folder,files(5).name);
and I suspect that you are using an older MATLAB release that did not have the folder field . R2016b was the first release that supported that field.
The work-around in this case would be
arqdir = 'F:\TCC-GENTIL\New Data';
files = dir(fullfile(arqdir,'*.nc'));
ficheiro = fullfile(arqdir, files(5).name);

更多回答(1 个)

Jan
Jan 2021-9-9
编辑:Jan 2021-9-9
I guess, that the code is not:
ficheiro = fullfile(files(5), files(5).name);
% but:
ficheiro = fullfile(files(5).folder, files(5).name);
The DIR command of old Matlab versions did not define the field "folder". Which Matlab version are you using?
A workaround is:
arqdir = 'F:\TCC-GENTIL\New Data';
files = dir(fullfile(arqdir, '*.nc'));
ficheiro = fullfile(arqdir, files(5).name);

类别

Help CenterFile Exchange 中查找有关 Startup and Shutdown 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by