Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: search file created during specific date/time  (Read 2540 times)

0 Members and 1 Guest are viewing this topic.

Yogesh123

    Topic Starter


    Beginner

    search file created during specific date/time
    « on: November 24, 2009, 05:11:28 AM »
    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.

    MikeTaylor



      Rookie

      Re: search file created during specific date/time
      « Reply #1 on: November 24, 2009, 07:30:39 AM »
      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:\>
      Bill Richardson