EDIT : Assez de gens ont encore répondu à cette réponse, que j'ai pensé la mettre à jour pour l'API Go1. Ceci est un exemple fonctionnel de filepath.Walk () . L'original est ci-dessous.
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)
}
Veuillez noter que filepath.Walk parcourt l'arborescence des répertoires de manière récursive.
Ceci est un exemple d'exécution:
$ 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>
RÉPONSE ORIGINALE SUIT: L'interface pour parcourir les chemins de fichiers a changé à partir du 16 septembre 2011, voir http://groups.google.com/group/golang-nuts/msg/e304dd9cf196a218 . Le code ci-dessous ne fonctionnera pas pour les versions de GO dans un proche avenir.
Il y a en fait une fonction dans la bibliothèque standard juste pour cela: 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)
}