Filtering txt files out structs and assign to subfolder

1 次查看(过去 30 天)
Hi There,
I was trying to filter out the 'CAp_*.txt' files and assign it to the last subfolder, but did not succeed. How can I do this?
Kind Regards,
  1 个评论
Bas Bloemendaal
Bas Bloemendaal 2021-11-24
Found out how to filter on ' CAd':
filtered_struct = directory_text{1,1}(startsWith({directory_text{1,1}.name}, 'CAd'));
However, I cannot assign it to the last subfolder where eacht .txt belongs to.

请先登录,再进行评论。

回答(1 个)

Shravan Kumar Vankaramoni
Hi,
You can simply use the below code to filter out the files
files = dir(CAp_*.txt) % This will give all the .txt files starting with CAp_
To copy files to a subfolder, refer the below answer:

类别

Help CenterFile Exchange 中查找有关 Multirate Signal Processing 的更多信息

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by