Contains information about a file for Xbox Tools Framework (XTF) apps.
typedef struct XTFFILEINFO {
LPCWSTR pszFileName;
DWORD dwFileAttributes;
ULONGLONG ullCreationTime;
ULONGLONG ullLastAccessTime;
ULONGLONG ullLastWriteTime;
ULONGLONG ullFileSize;
XTFFILEIORESERVED Reserved;
} XTFFILEINFO, *LPXTFFILEINFO;
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.
Header: Declared in xtffileio.h.
Library: Use xtffileio.lib.