Share via


FILETIME

The FILETIME structure holds an unsigned 64-bit date and time value for a file. This value represents the number of 100-nanosecond units since the beginning of January 1, 1601.

Syntax

typedef struct _FILETIME { 
  DWORD dwLowDateTime; 
  DWORD dwHighDateTime; 
} FILETIME, FAR *LPFILETIME; 

Members

  • dwLowDateTime
    Low-order 32 bits of the file time value.
  • dwHighDateTime
    High-order 32 bits of the file time value.

Remarks

A property of type PT_SYSTIME has a FILETIME structure for its value. Such a property has a FILETIME data type for the Value member in its definition in an SPropValue structure.

Requirements

Smartphone: Windows Mobile 2002 and later
OS Versions: Windows CE 3.0 and later
Header: mapidefs.h

See Also

MAPI Structures

Messaging

Last updated on Friday, April 22, 2005

© 2005 Microsoft Corporation. All rights reserved.

Send feedback on this topic to the authors.