Golang : Read directory content with filepath.Walk()
Golang's filepath.Walk function allow a program to traverse a directory content and tree with ease. In this tutorial, we will see how to read a directory and display its content name with file size. This example will use the http://golang.org/pkg/path/filepath/#Walk function.
readdirwalk.go
package main
import (
"path/filepath"
"os"
"flag"
"fmt"
)
func walkpath(path string, f os.FileInfo, err error) error {
fmt.Printf("%s with %d bytes\n", path,f.Size())
return nil
}
func main() {
flag.Parse()
root := flag.Arg(0) // 1st argument is the directory location
filepath.Walk(root, walkpath)
}
execute go run readdirwalk.go ./
and see how it goes. You can change to different directory and test out the output as well. Hope this tutorial is helpful to you.
See also : Golang : Read directory content with os.Open
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
+6.7k Android Studio : Hello World example
+7.7k Golang : How to feed or take banana with Gorilla Web Toolkit Session package
+36.2k Golang : Convert(cast) int64 to string
+40.9k Golang : How to count duplicate items in slice/array?
+5.5k Golang : Shortening import identifier
+11.5k Golang : Calculations using complex numbers example
+9.1k nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
+12.1k Golang : Simple client-server HMAC authentication without SSL example
+6.2k Golang : Extract sub-strings
+17.9k Golang : Check if a directory exist or not
+8k Golang : Randomize letters from a string example
+12.7k Golang : Convert int(year) to time.Time type