(path string)
| 68 | } |
| 69 | |
| 70 | func DoGoRecursive(path string) { |
| 71 | DoGoPath(path) |
| 72 | drs := fsx.Dirs(path) |
| 73 | outer: |
| 74 | for _, dr := range drs { |
| 75 | if dr == "testdata" { |
| 76 | continue |
| 77 | } |
| 78 | for _, ex := range Excludes { |
| 79 | if dr == ex { |
| 80 | continue outer |
| 81 | } |
| 82 | } |
| 83 | sp := filepath.Join(path, dr) |
| 84 | DoGoRecursive(sp) |
| 85 | } |
| 86 | } |