Skip Navigation Links
Skip Navigation LinksHome > ZipArchive > How to Use > API Documentation
ZipArchiveLib::CFileInfo Struct Reference

#include <FileInfo.h>

Public Member Functions

 CFileInfo ()
 
bool IsDirectory () const
 

Public Attributes

time_t m_tCreationTime
 The file creation time.
 
time_t m_tLastAccessTime
 The file last access time.
 
time_t m_tModificationTime
 The file modification time.
 
DWORD m_uAttributes
 The file system attributes.
 
ZIP_FILE_USIZE m_uSize
 The file size.
 

Detailed Description

A structure holding a file or a directory information.

Constructor & Destructor Documentation

ZipArchiveLib::CFileInfo::CFileInfo ( )
inline

Initializes a new instance of the CFileInfo class.

Member Function Documentation

bool ZipArchiveLib::CFileInfo::IsDirectory ( ) const
inline

Returns the value indicating whether the current CFileInfo object represents a directory or a regular file.

Returns
true, if the current CFileInfo object represents a directory; false, if it represents a regular file.

Member Data Documentation

time_t ZipArchiveLib::CFileInfo::m_tCreationTime

The file creation time.

time_t ZipArchiveLib::CFileInfo::m_tLastAccessTime

The file last access time.

time_t ZipArchiveLib::CFileInfo::m_tModificationTime

The file modification time.

DWORD ZipArchiveLib::CFileInfo::m_uAttributes

The file system attributes.

ZIP_FILE_USIZE ZipArchiveLib::CFileInfo::m_uSize

The file size.


The documentation for this struct was generated from the following file:
Back To Top Up