Golang : File system scanning
Problem :
How to scan all the files located inside a root directory in Golang?
Solution :
Use the filepath.Walk
function. See codes below :
package main
import (
"fmt"
"os"
"path/filepath"
)
func scan(path string, f os.FileInfo, err error) error {
fmt.Printf("Scanned %s with size %d bytes\n", path, f.Size())
return nil
}
func main() {
if len(os.Args) != 2 {
fmt.Printf("USAGE : %s <target_directory> \n", os.Args[0])
os.Exit(0)
}
dir := os.Args[1] // 1st argument is the directory location
err := filepath.Walk(dir, scan)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
}
Sample output :
./scanfilesystem /Users/
Scanned /Users/ with size 170 bytes
Scanned /Users/.localized with size 0 bytes
Scanned /Users/Shared with size 136 bytes
Scanned /Users/Shared/.localized with size 0 bytes
Scanned /Users/Shared/SC Info with size 68 bytes
Scanned /Users/sweetlogic with size 8194 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
+39.2k Golang : Convert to io.ReadSeeker type
+22k Golang : How to read JPG(JPEG), GIF and PNG files ?
+11.8k Golang : Flush and close file created by os.Create and bufio.NewWriter example
+23.7k Golang : How to validate URL the right way
+9.8k Golang : How to tokenize source code with text/scanner package?
+22.2k Golang : untar or extract tar ball archive example
+15.6k Golang : How to reverse elements order in map ?
+6.8k Golang : Get environment variable
+7.8k Golang : Routes multiplexer routing example with regular expression control
+27.3k Golang : Decode/unmarshal unknown JSON data type with map[string]interface
+18.2k Golang : Generate thumbnails from images
+8.2k Golang : Progress bar with ∎ character