Added easy check to see if entry is a directory.

This commit is contained in:
Nathan Moinvaziri 2018-08-23 17:03:03 -07:00
parent d2aa2277d9
commit 72cc7015a2
2 changed files with 11 additions and 0 deletions

View File

@ -351,6 +351,14 @@ int32_t mz_zip_reader_entry_get_info(void *handle, mz_zip_file **file_info)
return err;
}
int32_t mz_zip_reader_entry_is_dir(void *handle)
{
mz_zip_reader *reader = (mz_zip_reader *)handle;
if (mz_zip_reader_is_open(handle) != MZ_OK)
return MZ_PARAM_ERROR;
return mz_zip_entry_is_dir(reader->zip_handle);
}
int32_t mz_zip_reader_entry_save_process(void *handle, void *stream, mz_stream_write_cb write_cb)
{
mz_zip_reader *reader = (mz_zip_reader *)handle;

View File

@ -70,6 +70,9 @@ int32_t mz_zip_reader_entry_read(void *handle, const void *buf, int32_t len);
int32_t mz_zip_reader_entry_get_info(void *handle, mz_zip_file **file_info);
// Gets the current entry file info
int32_t mz_zip_reader_entry_is_dir(void *handle);
// Gets the current entry is a directory
int32_t mz_zip_reader_entry_save(void *handle, void *stream, mz_stream_write_cb write_cb);
// Save the current entry to a steam