How add a file to an existing zip file using Golang
问题 We can create a zip new file and add files using Go Language. But, how to add a new file with existing zip file using GoLang? If we can use Create function, how to get the zip.writer reference? Bit confused. 回答1: After more analysis, i found that, it is not possible to add any files with the existing zip file. But, I was able to add files with tar file by following the hack given in this URL. 回答2: Although I have not attempted this yet with a zip file that already exists and then writing to