Import files from a folder into Matlab and create a file list

조회 수: 3 (최근 30일)
Susan
Susan 2020년 3월 30일
댓글: Susan 2020년 3월 31일
Greetings. I face problem in extracting more than 1000 .json files from a folder into Matlab. I would like to create a filelist containing all the files in the folder and then go through each files and extract data from them, something like
filelist = {'d90f3c.json', '112.json', ..., 'acd.json' }
for i=1:length(filelist)
vals{i} = jsondecode(fileread(filelist{i}));
% Do some operations
end
Is there any way that I can have the "filelist" rather than making filelist by copying and pasting the name of each file from the folder which seems takes forever?
Thanks in advance!

채택된 답변

dpb
dpb 2020년 3월 30일
d=dir('*.json');
for i=1:numel(d)
vals{i} = jsondecode(fileread(d(i).name));
...

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 JSON Format에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by