mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
Added easy check to see if entry is a directory.
This commit is contained in:
parent
d2aa2277d9
commit
72cc7015a2
@ -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;
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user