Create folders and organize data based on file name.

4 visualizaciones (últimos 30 días)
Tyler
Tyler el 20 de En. de 2023
Respondida: Stephen23 el 20 de En. de 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?

Respuestas (2)

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

Categorías

Más información sobre File Operations en Help Center y File Exchange.

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by