Copy all files created after a specific hour in command line (Windows)?
As an IT administrator, you may need to copy all files created after a specific hour in the command line in Windows. This is a relatively common task, and it is quite simple to do.
The first step is to open up the Command Prompt. To do this, click the Start Button, type “cmd” in the search bar, and press Enter.
Once the Command Prompt is open, type “forfiles -p ” and then the path to the directory where you want to search. For example, if you want to search the C:\\ drive, you would type “forfiles -p C:\\”.
Next, you need to specify a date and time for the search. To do this, type “/d +” followed by the date in the form of “mm/dd/yyyy” and the time in the form of “hh:mm:ss”. For example, if you want to search for files created after 1:00 pm on June 10, 2020, you would type “/d +06/10/2020 13:00:00”.
Finally, type “/c ” followed by the command that you want to execute on the files. For example, if you want to copy the files to a different directory, you would type “/c copy @file ” followed by the path to the destination directory.
Once you have entered all the necessary commands, press Enter to execute the search. All files created after the specified time will be copied to the destination directory.
Using the command line in Windows to copy files created after a specific time is a simple and effective way to automate tasks. By following the steps above, any IT administrator can easily copy all files created after a specific hour in the command line in Windows.
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.