Google OR-Tools v9.11
a fast and portable software suite for combinatorial optimization
|
#include <zipfile.h>
Public Member Functions | |
ZipArchive (absl::string_view path, const ZipFileOptions &options) | |
ZipArchive (const ZipArchive &)=delete | |
ZipArchive & | operator= (const ZipArchive &)=delete |
const std::string & | filename () const |
~ZipArchive () | |
A zip archive, which may contain files that can be read through the /zip filename prefix.
Do not instantiate this class directly. Use the OpenZipArchive factory methods instead.
zipfile::ZipArchive::ZipArchive | ( | absl::string_view | path, |
const ZipFileOptions & | options ) |
Definition at line 39 of file zipfile.cc.
|
delete |
zipfile::ZipArchive::~ZipArchive | ( | ) |
Definition at line 42 of file zipfile.cc.
|
inline |
Returns the filename at which this archive was first opened. Since all equivalent zip archive paths share the same archive, this name will not necessarily match the name at which the archive was opened. For example, we provide no guarantees about whether the filename will begin with "/zip", since the "/zip" prefix is optional for opening zip archives.
|
delete |