Processing many sequential files

8 visualizaciones (últimos 30 días)
Pete
Pete el 4 de Ag. de 2013
I am trying to process many many files sequentially. I am using the 'dir' function to get a list of all the files and then using a 'for' loop to process each one. Here's essentially what's happening at the moment. (Note that 'function' is a custom function, and imagine I have 3000 txt files labelled 000000.txt - 002999.txt)
A=dir('*.txt')
j=length(A)
for k=i:j
m=function(A(k).name)
end
So far so good. However I have several 'batches' of 3000 txt files, each labelled the same way. Despite this, I need to 'add' some of the batches together so that they are processed all in the same loop. However I can't just drag the files to the same directory as they will replace the previous ones due to them having the same name. Also, they need to remain in the order they are in, i.e, the first 3000 get processed, followed by the second 3000, all in the same loop. Is there a way around this?
  2 comentarios
dpb
dpb el 4 de Ag. de 2013
Post EITHER on forum or newsgroup; not both. Already answered at cs-sm.
Pete
Pete el 4 de Ag. de 2013
ah my bad, thanks

Iniciar sesión para comentar.

Respuestas (1)

dpb
dpb el 4 de Ag. de 2013
See your identical posting on newsgroup.

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by