EDITAR : Suficiente gente todavía ha dado con esta respuesta, que pensé en actualizarla para la API Go1. Este es un ejemplo funcional de filepath.Walk () . El original está debajo.
package main
import (
"path/filepath"
"os"
"flag"
"fmt"
)
func visit(path string, f os.FileInfo, err error) error {
fmt.Printf("Visited: %s\n", path)
return nil
}
func main() {
flag.Parse()
root := flag.Arg(0)
err := filepath.Walk(root, visit)
fmt.Printf("filepath.Walk() returned %v\n", err)
}
Tenga en cuenta que filepath.Walk recorre el árbol de directorios de forma recursiva.
Esta es una ejecución de ejemplo:
$ mkdir -p dir1/dir2
$ touch dir1/file1 dir1/dir2/file2
$ go run walk.go dir1
Visited: dir1
Visited: dir1/dir2
Visited: dir1/dir2/file2
Visited: dir1/file1
filepath.Walk() returned <nil>
SIGUE LA RESPUESTA ORIGINAL: La interfaz para rutas de archivos móviles ha cambiado semanalmente desde el 16 de septiembre de 2011, consulte http://groups.google.com/group/golang-nuts/msg/e304dd9cf196a218 . El siguiente código no funcionará para las versiones de lanzamiento de GO en un futuro próximo.
En realidad, hay una función en la biblioteca estándar solo para esto: filepath.Walk .
package main
import (
"path/filepath"
"os"
"flag"
)
type visitor int
// THIS CODE NO LONGER WORKS, PLEASE SEE ABOVE
func (v visitor) VisitDir(path string, f *os.FileInfo) bool {
println(path)
return true
}
func (v visitor) VisitFile(path string, f *os.FileInfo) {
println(path)
}
func main() {
root := flag.Arg(0)
filepath.Walk(root, visitor(0), nil)
}