26Result<ReadableZip>
ZipOpenRead(
const std::string& fs_path);
29Result<void>
AddFile(WritableZip& zip,
const std::string& fs_path);
30Result<void>
AddFileAt(WritableZip& zip,
const std::string& fs_path,
31 const std::string& zip_path);
33Result<void>
ExtractFile(ReadableZip& zip, std::string_view zip_path,
34 const std::string& host_path);
Definition: alloc_driver.h:20
Result< void > AddFile(WritableZip &zip, const std::string &fs_path)
Definition: zip_file.cc:49
Result< void > AddFileAt(WritableZip &zip, const std::string &fs_path, const std::string &zip_path)
Definition: zip_file.cc:54
Result< ReadableZip > ZipOpenRead(const std::string &fs_path)
Definition: zip_file.cc:39
Result< WritableZip > ZipOpenReadWrite(const std::string &fs_path)
Definition: zip_file.cc:43
Result< void > ExtractFile(ReadableZip &zip, std::string_view zip_path, const std::string &host_path)
Definition: zip_file.cc:62