Skip Navigation Links
Skip Navigation LinksHome > ZipArchive > How to Use > API Documentation
The ZipArchive Library
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

◆ CFileInfo()

ZipArchiveLib::CFileInfo::CFileInfo ( )
inline

Initializes a new instance of the CFileInfo class.

Member Function Documentation

◆ IsDirectory()

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

◆ m_tCreationTime

time_t ZipArchiveLib::CFileInfo::m_tCreationTime

The file creation time.

◆ m_tLastAccessTime

time_t ZipArchiveLib::CFileInfo::m_tLastAccessTime

The file last access time.

◆ m_tModificationTime

time_t ZipArchiveLib::CFileInfo::m_tModificationTime

The file modification time.

◆ m_uAttributes

DWORD ZipArchiveLib::CFileInfo::m_uAttributes

The file system attributes.

◆ m_uSize

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