Create folders and organize data based on file name.

4 Ansichten (letzte 30 Tage)
Tyler
Tyler am 20 Jan. 2023
Beantwortet: Stephen23 am 20 Jan. 2023
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?

Antworten (2)

Jon
Jon am 20 Jan. 2023
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 am 20 Jan. 2023
movefile('*CP-A-01*.*', 'newdir01')
movefile('*CP-B-01*.*', 'newdir02')

Kategorien

Mehr zu File Operations finden Sie in Help Center und File Exchange

Produkte


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by