XTFFILEINFO Structure

Contains information about a file for Xbox Tools Framework (XTF) apps.

Syntax

typedef struct XTFFILEINFO {
    LPCWSTR pszFileName;
    DWORD dwFileAttributes;
    ULONGLONG ullCreationTime;
    ULONGLONG ullLastAccessTime;
    ULONGLONG ullLastWriteTime;
    ULONGLONG ullFileSize;
    XTFFILEIORESERVED Reserved;
} XTFFILEINFO, *LPXTFFILEINFO;  

Members

pszFileName
Pointer to the filename of the file.

dwFileAttributes
File attributes for the file.

ullCreationTime
Time that the file was created.

ullLastAccessTime
Time that the file was last accessed.

ullLastWriteTime
Time that the file was last written to.

ullFileSize
Size of the file, in bytes.

Reserved
Not used.

Requirements

Header: Declared in xtffileio.h.

Library: Use xtffileio.lib.

See also

Reference

XtfFileIO