I am trying to make a small program which should carry out the following steps sequentially: 1. Prompt for a file path 2. Open the file at above path, preferably an XLS or CSV sheet containing lists of filenames. 3. Read data (filenames) from desired columns in the above file. 4. Check if all the read filenames are present in a source folder. 5. If yes, copy all the files to the destination folder(s). 6. It a file is missing in the source, ignore it and copy the rest. 7. If a file with the same name exists in the destination folder, backup the existing file in a folder in source directory. 8. Update the excel sheet with status of copy.
Please suggest which is the best tool/language to author such a program. I was thinking of the below: -Windows batch scripting -Windows powershell (though I am not sure what it is, please forgive my ignorance) -Can Java do it? -C/C++? -Any other tool/language?
Any useful pointers will be greatly appreciated.
Thanks in Advance, Vivek