diff options
Diffstat (limited to 'vendor/github.com/technoweenie/multipartstreamer/examples/multipart.go')
-rw-r--r-- | vendor/github.com/technoweenie/multipartstreamer/examples/multipart.go | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/vendor/github.com/technoweenie/multipartstreamer/examples/multipart.go b/vendor/github.com/technoweenie/multipartstreamer/examples/multipart.go deleted file mode 100644 index 971078be..00000000 --- a/vendor/github.com/technoweenie/multipartstreamer/examples/multipart.go +++ /dev/null @@ -1,31 +0,0 @@ -package main - -import ( - "bytes" - "flag" - "fmt" - "io" - "mime/multipart" - "os" - "path/filepath" -) - -func main() { - defaultPath, _ := os.Getwd() - defaultFile := filepath.Join(defaultPath, "streamer.go") - fullpath := flag.String("path", defaultFile, "Path to the include in the multipart data.") - flag.Parse() - - buffer := bytes.NewBufferString("") - writer := multipart.NewWriter(buffer) - - fmt.Println("Adding the file to the multipart writer") - fileWriter, _ := writer.CreateFormFile("file", *fullpath) - fileData, _ := os.Open(*fullpath) - io.Copy(fileWriter, fileData) - writer.Close() - - fmt.Println("Writing the multipart data to a file") - output, _ := os.Create("multiparttest") - io.Copy(output, buffer) -} |