How to select files based on the name?

6 ビュー (過去 30 日間)
Andi
Andi 2022 年 1 月 12 日
回答済み: Rik 2022 年 1 月 12 日
My dataset consists of about 6000 txt files. Every three files have same initial name but diffrent last name.I want to write a code that first select all the three files has same initial name and then combine them in one file and delete them from directory at the same time. This process repeats onward. In the end I will left with 2000 files only.
For example, 123x.txt, 123y.txt, 123z.txt..... it be one group and so on. 123.txt
  4 件のコメント
Rik
Rik 2022 年 1 月 12 日
Help me help you. I'm not aware of any language where 123 is a first name and y is a last name. You have also already stated this in your question.
What is the pattern here? Is there a separator? Or should the code just attempt to match parts of one name until it finds a substring where there are only 3 matches?
Andi
Andi 2022 年 1 月 12 日
Apology! I used 123 just for understanding, the orginla name of the files are like
CHICH_20190924_114203.Z.sac
CHICH_20190924_110755.Y.sac
CHICH_20190924_114335.Y.sac
CHICH_20190924_114203.X.sac
CHICH_20190924_113637.Y.sac
CHICH_20190924_110755.X.sac
CHICH_20190924_114335.Z.sac
CHICH_20190924_113637.X.sac
CHICH_20190924_114335.X.sac
CHICH_20190924_114203.Y.sac
CHICH_20190924_113637.Z.sac
CHICH_20190924_110755.Z.sac

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

回答 (1 件)

Rik
Rik 2022 年 1 月 12 日
First you need to retrieve all file names with dir. Then you can split the file name on the dots with the split function. After that you can use the unique function and generate the 3 source file names and the new file name.
The merging itself depends on the specifics of your files.

カテゴリ

Help Center および File ExchangeFile Operations についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by