9 type FileHeader struct {
10 Size [2]byte // Total size of FileHeader payload
11 Type [2]byte // 0 for file, 1 for dir
12 FilePath []byte // encoded file path
15 func NewFileHeader(fileName string, isDir bool) FileHeader {
17 Type: [2]byte{0x00, 0x00},
18 FilePath: EncodeFilePath(fileName),
21 fh.Type = [2]byte{0x00, 0x01}
24 encodedPathLen := uint16(len(fh.FilePath) + len(fh.Type))
25 binary.BigEndian.PutUint16(fh.Size[:], encodedPathLen)
30 func (fh *FileHeader) Read(p []byte) (int, error) {
31 return copy(p, slices.Concat(