aboutsummaryrefslogtreecommitdiff
path: root/tar.go
blob: e811840f7e4c6c125c0a6563872aa30d079bb5d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package main

import (
	"archive/tar"
	"io"
	"log"
	"os"
)

func streamFilesTar(files []File, stream io.WriteCloser) {
	tarStream := tar.NewWriter(stream)
	for _, f := range files {
		file, err := os.Open(f.Path)
		if err != nil {
			log.Printf("Error reading file '%s': %s\n", f.Path, err)
			continue
		}
		stat, err := file.Stat()
		if err != nil {
			log.Printf("Error getting stat of file '%s': %s\n", f.Path, err)
			continue
		}
		hdr, err := tar.FileInfoHeader(stat, "")
		if err != nil {
			log.Printf("Error creating tar header for file '%s': %s\n", f.Path, err)
			continue
		}
		if err := tarStream.WriteHeader(hdr); err != nil {
			log.Printf("Error writing tar header to stream for file '%s': %s\n", f.Path, err)
			continue
		}
		if _, err := io.Copy(tarStream, file); err != nil {
			log.Printf("Error writing file to stream '%s': %s\n", f.Path, err)
			continue
		}
	}
	if err := tarStream.Close(); err != nil {
		log.Fatal("Error closing tar stream:", err)
	}
	if err := stream.Close(); err != nil {
		log.Fatal("Error closing stream:", err)
	}
}