How to get first few bytes per entry?
gtk2k opened this issue · 1 comments
gtk2k commented
I have written the following code, but of course it does not work as expected.
How can I get the first few bytes of each entry?
fs.createReadStream('test.zip')
.pipe(unzipper.Parse())
.on('entry', entry => {
entry.on('readable', _ => {
data = entry.read(10);
console.log(entry.path, data);
});
});
ZJONSSON commented
To achieve this more easily, you can use the open methods by calling entry.stream()
and then connecting it to a transform stream that you can stop as soon as you've received the first bytes. If you prefer using the legacy methods, you'll need to autodrain
once you have read the desired bytes (refer to the readme for autodrain usage).