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
+21.9k Golang : Print leading(padding) zero or spaces in fmt.Printf?
+21.4k Golang : Convert string slice to struct and access with reflect example
+10.1k Fix ERROR 1045 (28000): Access denied for user 'root'@'ip-address' (using password: YES)
+20.3k Golang : Secure(TLS) connection between server and client
+15.3k Golang : Validate hostname
+5.1k PHP : Hide PHP version information from curl
+9.6k Golang : Get current, epoch time and display by year, month and day
+21.5k Golang : How to reverse slice or array elements order
+5.8k PageSpeed : Clear or flush cache on web server
+7.7k Golang : What fmt.Println() can do and println() cannot do
+11.1k Golang : Characters limiter example
+5.5k Fix yum-complete-transaction error