Create folders and organize data based on file name.

4 次查看(过去 30 天)
The current code makes .txt files from the raw data file type. This then is plotted later (that is all figured out). However, to make the code more helpful, can I have it organize the data into folders based differences in the file name?
For example, the picture below has raw data from two different testing locations (CP-A-01 and CP-B-01). Can these files be sorted based on that difference in the file name?

回答(2 个)

Jon
Jon 2023-1-20
You should be able to select the ones you want using dir and wildcards so for example
list = dir('*CP-B-01*.txt')

Stephen23
Stephen23 2023-1-20
movefile('*CP-A-01*.*', 'newdir01')
movefile('*CP-B-01*.*', 'newdir02')

类别

Help CenterFile Exchange 中查找有关 File Operations 的更多信息

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by