英文:
why is that the filepath.Walk example has build tag excluding windows and plan9
问题
在这个代码示例中,+build !windows,!plan9
是一个构建标记(build tag),用于指定在哪些操作系统上编译代码。!windows
表示不在 Windows 系统上编译,!plan9
表示不在 Plan 9 系统上编译。
Go 语言的 filepath.Walk
函数用于遍历文件路径,并对每个文件或目录执行指定的操作。然而,不同的操作系统对文件路径的表示方式可能有所不同,因此在编写跨平台的代码时,需要考虑不同操作系统的差异。
在这个例子中,作者选择排除 Windows 和 Plan 9 操作系统,可能是因为这两个操作系统的文件路径表示方式与其他操作系统有所不同,需要特殊处理。通过排除这两个操作系统,可以确保代码在其他操作系统上正常工作。
总之,这个构建标记的目的是为了确保代码在特定的操作系统上编译和运行,而不会受到其他操作系统的影响。
英文:
at https://pkg.go.dev/path/filepath#Walk
the code example is
// +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
}
}
why do the go authors excluded windows and plan9 ?
答案1
得分: 1
这些更改是通过提交消息“使Walk示例在playground中可运行”添加的。
- https://github.com/golang/go/commit/940811922fb528fabda91a2b2dbb401a06aeb1b3
- 更多评论请参见https://go-review.googlesource.com/c/go/+/122237/
英文:
Somehow this changes was added with the commit message
make Walk example runnable in the playground
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论