Read Filenames from a directory in an Array
Read Filenames from a directory in an Array
(OP)
Hi,
i would like to read filenames from an directory in an array so that i can loop over the array, open a file in the array, process it and save it and so on.
How can i read all filenames of an directory in an array??
Thanks
Kai
i would like to read filenames from an directory in an array so that i can loop over the array, open a file in the array, process it and save it and so on.
How can i read all filenames of an directory in an array??
Thanks
Kai





RE: Read Filenames from a directory in an Array
CODE
Loop through the files and process them
CODE
process( d(indx).name ) % your processing function here
end