Golang : Copy file
Here’s an example to copy a file named “input.txt” to another file named “output.txt”.
Copying files can be done in several ways in Go. The example below is the easiest :
package main
import (
"io"
"fmt"
"os"
)
func main () {
// open files r and w
r, err := os.Open("input.txt")
if err != nil {
panic(err)
}
defer r.Close()
w, err := os.Create("output.txt")
if err != nil {
panic(err)
}
defer w.Close()
// do the actual work
n, err := io.Copy(w, r)
if err != nil {
panic(err)
}
fmt.Printf("Copied %v bytes\n", n)
}
With the file input.txt
in the same directory,
execute >go run copyfile.go
and output will something similar to this
Copied 561 bytes
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+5.4k Golang : Convert lines of string into list for delete and insert operation
+22.9k Generate checksum for a file in Go
+9.7k Golang : Convert(cast) string to int64
+19.4k Golang : Delete item from slice based on index/key position
+12.6k Golang : Extract part of string with regular expression
+13k Golang : Convert IPv4 address to packed 32-bit binary format
+8.7k Golang : Generate Datamatrix barcode
+10k Golang : Detect number of active displays and the display's resolution
+9.6k Mac OSX : Get a process/daemon status information
+10.8k Golang : Create matrix with Gonum Matrix package example
+10.1k Golang : Translate language with language package example