MCPcopy Create free account
hub / github.com/axmolengine/axmol / getFirstFilename

Method getFirstFilename

core/base/ZipUtils.cpp:840–848  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

838}
839
840std::string ZipFile::getFirstFilename()
841{
842 if (unzGoToFirstFile(_data->zipFile) != UNZ_OK)
843 return emptyFilename;
844 std::string path;
845 unz_file_info_s info;
846 getCurrentFileInfo(&path, &info);
847 return path;
848}
849
850std::string ZipFile::getNextFilename()
851{

Callers 1

luaLoadChunksFromZIPMethod · 0.80

Calls 1

unzGoToFirstFileFunction · 0.85

Tested by

no test coverage detected