Write files in Golang
In this post, we are going to explore how to write into files in Golang. Go has the io, os, and ioutil (deprecated in Go1.16) package which makes writing a file a lot easier. So, let’s see what are the different ways we can do it. First step: Creating a File In order to write […]
Write files in Golang Read More »