필터 지우기
필터 지우기

Hi everyone! Please I need some help with batch importing a bunch of xml file files I have in a folder into my workspace. I tried to use xml2struct but it only gets one

조회 수: 3 (최근 30일)
clear all
clc
[file_list,path_name]=uigetfile('.xml', 'Grab the files you want to process', 'Multiselect', 'on' );
%%
for i=1:length(file_list)
filename=file_list(i);
data=xml2struct('filename')
end
% Using the xml2struct with a path to each xml file works but my problem is
% how to loop through each file in the folder

채택된 답변

Simon Chan
Simon Chan 2021년 7월 15일
편집: Simon Chan 2021년 7월 15일
Try to add the indexing for variable 'data' and each file name
for i=1:length(file_list)
data(i)=xml2struct(file_list{i})
end
  댓글 수: 2
Daniel Abraham
Daniel Abraham 2021년 7월 15일
Hi Simon, thanks for your reply, but it gives the error unfortunately.
Error using xml2struct (line 48)
The file filename.xml could not be found
Error in test (line 7)
data(i)=xml2struct('filename')
48 error(['The file ' file ' could not be found']);
:(
I believe the issue is that the function works with a directory to the file but not with the string 'filename', but it is just one file name and that can't be iterated or maybe I'm missing something
Simon Chan
Simon Chan 2021년 7월 15일
Modify again to take care of the file name:
for i=1:length(file_list)
data(i)=xml2struct(file_list{i});
end

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by