We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
like this:
-(BOOL) UnzipIsEncrypted { int ret = unzGoToFirstFile( _unzFile ); if (ret == UNZ_OK) { do { ret = unzOpenCurrentFile( _unzFile ); if( ret!=UNZ_OK ) { return NO; } unz_file_info fileInfo ={0}; ret = unzGetCurrentFileInfo(_unzFile, &fileInfo, NULL, 0, NULL, 0, NULL, 0); if (ret!= UNZ_OK) { return NO; } else if((fileInfo.flag & 1) == 1) { return YES; } unzCloseCurrentFile( _unzFile ); ret = unzGoToNextFile( _unzFile ); }while( ret==UNZ_OK && UNZ_OK!=UNZ_END_OF_LIST_OF_FILE ); } return NO; }
posted in: here
Thanks!
The text was updated successfully, but these errors were encountered:
Send a pull request, and I'll merge it in.
Sorry, something went wrong.
No branches or pull requests
like this:
posted in: here
Thanks!
The text was updated successfully, but these errors were encountered: