i am trying to get a list of files into an array or list from multiple directories
currently i am doing:
tempbatchaddresses = Directory.GetFiles(@"c:\", "*.log");
but i also need tempbatchaddresses += Directory.GetFiles(@"d:\", "*.log");
and a third one as well. i need to add the file locations of files from 3 different directories.
how do i do this?