So;
I have a list in a text file that contains sections of a what would be filenames..
I'm wanting to read from this text file into I guess an array, unless there's a better way to do it.. and then find the file that matches with each of the entries in the array and perform an action against that file....
Text file
aaa.exe
bbb.exe
ccc.exe
ddd.exe
File list
aaa.exe
ggg.exe
ccc.exe
rrr.exe
So how would I read in the entries of the text file, read in the entries of the *.exe files in a specified directory.. search the *.exe's for matches and then perform an action against them?