MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / close

Method close

extlibs/elzip/src/unzipper.cpp:43–54  ·  view source on GitHub ↗

Close the zip file

Source from the content-addressed store, hash-verified

41
42 // Close the zip file
43 void unzipper::close()
44 {
45 if (zipFile_)
46 {
47 files_.clear();
48 folders_.clear();
49
50 closeEntry();
51 unzClose(zipFile_);
52 zipFile_ = nullptr;
53 }
54 }
55
56 // Check if a zipfile is open.
57 // return:

Callers

nothing calls this directly

Calls 2

unzCloseFunction · 0.85
clearMethod · 0.45

Tested by

no test coverage detected