GO语言"path/filepath"包中"Walk"函数的用法及代码示例。
用法:
func Walk(root string, fn WalkFunc) error
Walk 遍历以根为根的文件树,为树中的每个文件或目录调用 fn,包括根。
访问文件和目录时出现的所有错误都由 fn 过滤:有关详细信息,请参阅WalkFunc 文档。
这些文件按词法顺序遍历,这使得输出具有确定性,但需要 Walk 在继续遍历该目录之前将整个目录读入内存。
Walk 不遵循符号链接。
Walk 的效率低于 Go 1.16 中引入的 WalkDir,它避免了在每个访问的文件或目录上调用 os.Lstat。
例子:
//go:build !windows && !plan9
package main
import (
"fmt"
"io/fs"
"os"
"path/filepath"
)
func prepareTestDirTree(tree string) (string, error) {
tmpDir, err := os.MkdirTemp("", "")
if err != nil {
return "", fmt.Errorf("error creating temp directory: %v\n", err)
}
err = os.MkdirAll(filepath.Join(tmpDir, tree), 0755)
if err != nil {
os.RemoveAll(tmpDir)
return "", err
}
return tmpDir, nil
}
func main() {
tmpDir, err := prepareTestDirTree("dir/to/walk/skip")
if err != nil {
fmt.Printf("unable to create test dir tree: %v\n", err)
return
}
defer os.RemoveAll(tmpDir)
os.Chdir(tmpDir)
subDirToSkip := "skip"
fmt.Println("On Unix:")
err = filepath.Walk(".", func(path string, info fs.FileInfo, err error) error {
if err != nil {
fmt.Printf("prevent panic by handling failure accessing a path %q: %v\n", path, err)
return err
}
if info.IsDir() && info.Name() == subDirToSkip {
fmt.Printf("skipping a dir without errors: %+v \n", info.Name())
return filepath.SkipDir
}
fmt.Printf("visited file or dir: %q\n", path)
return nil
})
if err != nil {
fmt.Printf("error walking the path %q: %v\n", tmpDir, err)
return
}
}
输出:
On Unix: visited file or dir: "." visited file or dir: "dir" visited file or dir: "dir/to" visited file or dir: "dir/to/walk" skipping a dir without errors: skip
相关用法
- GO WalkDir用法及代码示例
- GO WaitGroup用法及代码示例
- GO WithDeadline用法及代码示例
- GO Writer.Init用法及代码示例
- GO WordEncoder.Encode用法及代码示例
- GO WordDecoder.Decode用法及代码示例
- GO Writer.WriteAll用法及代码示例
- GO WriteFile用法及代码示例
- GO WordDecoder.DecodeHeader用法及代码示例
- GO Writer.RegisterCompressor用法及代码示例
- GO WithValue用法及代码示例
- GO WithTimeout用法及代码示例
- GO Writer用法及代码示例
- GO WriteString用法及代码示例
- GO Write用法及代码示例
- GO WithCancel用法及代码示例
- GO Writer.AvailableBuffer用法及代码示例
- GO PutUvarint用法及代码示例
- GO Scanner.Scan用法及代码示例
- GO LeadingZeros32用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 Walk。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。