If I write the content to a file its adding some header and footer to the file. What is the issue? Sample code ``` reader, _, err = CopyFromContainer(context.TODO(), containerId, path) f, err = os.Create("tempFile") n, err = io.Copy(f, reader) ```
If I write the content to a file its adding some header and footer to the file.
What is the issue?
Sample code