I need to be able to copy files from a network drive to another folder. My files are in different folders on the same drive. I need everthing that contains the keyword "Fiber" from all the folders that have the most recent date. I have a script that does that correctly. The problem is that my script only work if I specify the date.I want to be able to do that without having to always change the date manually.
xcopy R:\*fiber*.zip C:\Users\john.doe\Desktop\shape /s /d:06-20-2015
After I have my files, I want to be able to unzip them because they are zip files. Am I able to do this with a .bat files or can I do that with a c# script. Could you tell me how to fix my two problems.
Thanks.