mirror of
https://github.com/golang/go
synced 2024-11-05 17:16:10 -07:00
207d3de1fa
Updates golang/go#35718 Change-Id: I10bfd5421cd44bb58b8bcaa6e9205040c25f51be Reviewed-on: https://go-review.googlesource.com/c/tools/+/208257 Run-TryBot: Rebecca Stambler <rstambler@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Heschi Kreinick <heschi@google.com>
38 lines
912 B
Go
38 lines
912 B
Go
// Copyright 2016 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// +build appengine !linux,!darwin,!freebsd,!openbsd,!netbsd
|
|
|
|
package fastwalk
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"os"
|
|
)
|
|
|
|
// readDir calls fn for each directory entry in dirName.
|
|
// It does not descend into directories or follow symlinks.
|
|
// If fn returns a non-nil error, readDir returns with that error
|
|
// immediately.
|
|
func readDir(dirName string, fn func(dirName, entName string, typ os.FileMode) error) error {
|
|
fis, err := ioutil.ReadDir(dirName)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
skipFiles := false
|
|
for _, fi := range fis {
|
|
if fi.Mode().IsRegular() && skipFiles {
|
|
continue
|
|
}
|
|
if err := fn(dirName, fi.Name(), fi.Mode()&os.ModeType); err != nil {
|
|
if err == ErrSkipFiles {
|
|
skipFiles = true
|
|
continue
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|