2020-05-01 15:35:47 +02:00
|
|
|
// 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.
|
|
|
|
|
2021-08-31 18:49:08 +02:00
|
|
|
//go:build appengine || (!linux && !darwin && !freebsd && !openbsd && !netbsd)
|
2020-05-01 15:35:47 +02:00
|
|
|
// +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 {
|
2021-10-06 07:10:50 +02:00
|
|
|
dirEntries, err := os.ReadDir(dirName)
|
2020-05-01 15:35:47 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
skipFiles := false
|
2021-10-06 07:10:50 +02:00
|
|
|
for _, entry := range dirEntries {
|
|
|
|
if entry.Type().IsRegular() && skipFiles {
|
2020-05-01 15:35:47 +02:00
|
|
|
continue
|
|
|
|
}
|
2021-10-06 07:10:50 +02:00
|
|
|
if err := fn(dirName, entry.Name(), entry.Type()&os.ModeType); err != nil {
|
2020-05-01 15:35:47 +02:00
|
|
|
if err == ErrSkipFiles {
|
|
|
|
skipFiles = true
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|