Results 1 to 2 of 2

Thread: Checking a file's last modication date

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Aug 2000
    Posts
    183

    Checking a file's last modication date

    Ok if I click on properties of a file it shows me the date that file was last modified, does anyone know how to get that date?

  2. #2
    jim mcnamara
    Guest
    Code:
    BOOL GetFileTime(
      HANDLE hFile,                 // handle to file
      LPFILETIME lpCreationTime,    // creation time
      LPFILETIME lpLastAccessTime,  // last access time
      LPFILETIME lpLastWriteTime    // last write time
    );
    the file handle comes from CreateFile or OpenFile. The times are in the FILETIME structure.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width