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

Author Topic: Find last written date without dir.  (Read 2725 times)

0 Members and 1 Guest are viewing this topic.

supertoyz

    Topic Starter


    Starter

    Find last written date without dir.
    « on: March 22, 2010, 01:04:56 PM »
    I’m looking for a way to find the last written date for a file. Much like dir /TW but I need it for individual files, not a whole drive.

    Helpmeh



      Guru

    • Roar.
    • Thanked: 123
      • Yes
      • Yes
    • Computer: Specs
    • Experience: Familiar
    • OS: Windows 8
    Re: Find last written date without dir.
    « Reply #1 on: March 22, 2010, 01:12:19 PM »
    Look at the syntax (the switches and such), for the dir command. You can search for specific files, even within folders.
    Where's MagicSpeed?
    Quote from: 'matt'
    He's playing a game called IRL. Great graphics, *censored* gameplay.

    supertoyz

      Topic Starter


      Starter

      Re: Find last written date without dir.
      « Reply #2 on: March 22, 2010, 01:17:42 PM »
      Oh man, sorry for wasting your time. I've been using dir for so long with directories I totally overlooked the files part.

      greg



        Intermediate

        Thanked: 7
        Re: Find last written date without dir.
        « Reply #3 on: March 22, 2010, 01:35:36 PM »
        I’m looking for a way to find the last written date for a file. Much like dir /TW but I need it for individual files, not a whole drive.

        C:\>type  dateonefile.bat
        Code: [Select]
        @echo off
        dir /TCAW  abc.txt
        echo creation
        dir /TC  abc.txt
        echo access
        dir /TA  abc.txt
        echo written
        dir /TW  abc.txt

        Output:

        11/10/2009  03:24 PM                36 abc.txt
         Creation:
         12/16/2009  01:42 PM                36 abc.txt
         Access
         03/17/2010  11:15 PM                36 abc.txt
         Written
         11/10/2009  03:24 PM                36 abc.txt
          C:\>
        Have a Nice Day