Skip Navigation Links
Skip Navigation LinksHome > ZipArchive > How to Use > API Documentation

ZipArchiveLib::CFileInfo Struct Reference

#include <FileInfo.h>

List of all members.


Public Member Functions

 CFileInfo ()
bool IsDirectory () const

Public Attributes

time_t m_uAccessTime
 The last access time.
DWORD m_uAttributes
 The file system attributes.
time_t m_uCreateTime
 The Creation time.
time_t m_uModTime
 The last modification time.
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

The last access time.

The file system attributes.

The Creation time.

The last modification time.

The file size.


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