You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 23, 2019. It is now read-only.
import("archive/tar")
....
reader, _, err = CopyFromContainer(context.TODO(), containerId, path)
if err != nil{
log.Println(err.Error())
}
tr := tar.NewReader(reader)
for {
// hdr gives you the header of the tar file
hdr, err := tr.Next()
if err == io.EOF {
// end of tar archive
break
}
if err != nil {
log.Fatalln(err)
}
buf := new(bytes.Buffer)
buf.ReadFrom(tr)
// You can use this wholeContent to create new file
wholeContent := buf.String()
fmt.Println("Whole of the string of ", hdr.Name ," is ",wholeContent)
}
If I write the content to a file its adding some header and footer to the file.
What is the issue?
Sample code
The text was updated successfully, but these errors were encountered: