1.

Solve : search file created during specific date/time?

Answer»

Dear,

C:
dir abc.txt /s >c:main.txt

By this COMMAND i am getting the list of files exists in entire C: named as "abc.txt"

but how do i limit my search to FINDOUT the "abc.txt" file created during SPECIFIC date/time.

please advise,
thanks in advance.
C:\>dir /s abc*.txt | findstr " 11/10/2009 "
11/10/2009 02:24 PM 36 abc.txt
11/10/2009 02:24 PM 36 abc.txt
11/10/2009 02:24 PM 36 abc.txt

C:\>



Discussion

No Comment Found