Import multiple xml.files in a folder

7 ビュー (過去 30 日間)
Vlatko Milic
Vlatko Milic 2021 年 11 月 16 日
コメント済み: Vlatko Milic 2021 年 11 月 16 日
Hi,
I have more than 100 xml.files in a folder and I would like to import them in matlab. Each as a separate table for example and also to keep the names of the various file names. I cannot use the import tool since it does not deal with this file type. Does anybody have some advice?
Sincerely,

回答 (1 件)

ANKUR KUMAR
ANKUR KUMAR 2021 年 11 月 16 日
You can use the dir command to store the file names and use for loop to read all the files.
F = dir('path/*.xml')
for index = 1:length(F)
DOMnode = xmlread(F(index));
end
  1 件のコメント
Vlatko Milic
Vlatko Milic 2021 年 11 月 16 日
Thank you for the feedback Ankur! I get the error "Error using xmlread (line 112)
Input must be a file name or URL"
Any idea on what it can be?

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeStructured Data and XML Documents についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by