Using For-each iteration would start from beginning of list. The files are not done sequentially. I may choose a file that is in the middle of my list. I need to move to the next one right after that. So I need to determine the index of the current file loaded so that I can move to the next. Also, the list could change as more than one person will be working on doing this at one time so I have to reload the array after each file is copied and then deleted.
On Oct 21, 9:29 pm, Cerebrus <[email protected]> wrote: > You can simply use a For-each iteration to move through the array: > --- > For each currFile as FileInfo in aryFiles > 'Move the file. > Next > ---
