44f7700c0c
* Backend: Enable Go module graph pruning and lazy module loading This commit applies the changes by running `go mod tidy -go=1.17` to enable module graph pruning and lazy module loading supported by Go 1.17 or higher. Signed-off-by: Eng Zer Jun <engzerjun@gmail.com> * Backend: Move from io/ioutil to io and os package The io/ioutil package has been deprecated as of Go 1.16, see https://golang.org/doc/go1.16#ioutil. This commit replaces the existing io/ioutil functions with their new definitions in io and os packages. Signed-off-by: Eng Zer Jun <engzerjun@gmail.com>
37 lines
1,000 B
Go
37 lines
1,000 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.
|
|
|
|
//go:build appengine || (!linux && !darwin && !freebsd && !openbsd && !netbsd)
|
|
// +build appengine !linux,!darwin,!freebsd,!openbsd,!netbsd
|
|
|
|
package fastwalk
|
|
|
|
import (
|
|
"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 {
|
|
dirEntries, err := os.ReadDir(dirName)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
skipFiles := false
|
|
for _, entry := range dirEntries {
|
|
if entry.Type().IsRegular() && skipFiles {
|
|
continue
|
|
}
|
|
if err := fn(dirName, entry.Name(), entry.Type()&os.ModeType); err != nil {
|
|
if err == ErrSkipFiles {
|
|
skipFiles = true
|
|
continue
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|