diff options
author | Wim <wim@42.be> | 2016-11-20 17:02:17 +0100 |
---|---|---|
committer | Wim <wim@42.be> | 2016-11-20 17:02:17 +0100 |
commit | 94ea775232eabfd3945ef9b5d6e93e3505fd4a99 (patch) | |
tree | 9930dd9d68cee5e7b8153d3e3345539f21fe1fbe /vendor/github.com/technoweenie/multipartstreamer/examples/multipart.go | |
parent | 449ed31e25f2c21ac9db258999a5a893889983eb (diff) | |
parent | 2e4b7fac1146c186f28599d62379d7e9912fda81 (diff) | |
download | matterbridge-msglm-94ea775232eabfd3945ef9b5d6e93e3505fd4a99.tar.gz matterbridge-msglm-94ea775232eabfd3945ef9b5d6e93e3505fd4a99.tar.bz2 matterbridge-msglm-94ea775232eabfd3945ef9b5d6e93e3505fd4a99.zip |
Merge branch 'telegram'
Add telegram support
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, 31 insertions, 0 deletions
diff --git a/vendor/github.com/technoweenie/multipartstreamer/examples/multipart.go b/vendor/github.com/technoweenie/multipartstreamer/examples/multipart.go new file mode 100644 index 00000000..971078be --- /dev/null +++ b/vendor/github.com/technoweenie/multipartstreamer/examples/multipart.go @@ -0,0 +1,31 @@ +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) +} |