Replies: 1 comment
-
I did a bit of research, and I could not find any CLI option too. I also searched through the 7-zip source code and might have found how it handles archive comments, though I still need to figure out how to exploit it in the library. It's a helpful feature, so I'll definitely work on supporting it! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Zip files have the ability to have a comment string. 7-Zip supports this through its GUI but I don't see any option to do this from the command line and I don't know if the API allows it.
It would be nice to have this functionality in bit7z, if it's possible. For reference this is the API doc for this from minizip-ng:
mz_zip_set_comment
Sets the zip file's global comment string when the zip file is opened for writing. According to the zip file specification, each zip file can store a global comment with a maximum length of UINT16_MAX or 65535 characters.
Beta Was this translation helpful? Give feedback.
All reactions