I am hoping someone can write and give me a simple VB6 app that renames files using criteria defined in a csv file. I have found no existing apps that do exactly what I need. What I have are jpg’s that need to be renamed. The CSV file contains 2 columns. Column 1 has the existing name of a jpg file, column 2 has the new filename. What I need the app to do is prompt for the diretory that contains the jpg’s and csv file, then prompt for the CSV file name that contains the renaming criteria, and then prompt for the directory where the renamed files would be placed(destination dir). I would like the app to read each line of the CSV file, and process the jpg’s until the end of the file is reached. So, the script would read the first filename, copy the jpg with that filename into the new directory, then rename it with the filename in column 2 of the CSV. EX: column1 has “picture09092003.jpg”, and column2 has “900032CE10BA.main.jpg”. The script would copy the file named “picture09092003.jpg” to the destination directory, and then rename it “900032CE10BA.main.jpg”. It would process all the records in the CSV unitl all jpg files have been copied and renamed. If anyonw can help, thanks.