Walk extends filepath.Walk to also follow symlinks
(path string, walkFn filepath.WalkFunc)
| 34 | |
| 35 | // Walk extends filepath.Walk to also follow symlinks |
| 36 | func Walk(path string, walkFn filepath.WalkFunc) error { |
| 37 | return walk(path, path, walkFn) |
| 38 | } |