How to check if a file is gzip compressed?

There is a magic number at the beginning of the file. Just read the first two bytes and check if they are equal to 0x1f8b.

Leave a Comment