You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Walk walks the file tree rooted at root, calling fn for each file or directory in the tree, including root.
49
+
// Walk walks the file tree rooted at root, calling fn for each file or
50
+
// directory in the tree, including root. All errors that arise visiting files
51
+
// and directories are filtered by fn: see the WalkFunc documentation for
52
+
// details.
50
53
//
51
-
// All errors that arise visiting files and directories are filtered by fn: see the WalkFunc documentation for details.
52
-
//
53
-
// The files are walked in lexical order, which makes the output deterministic but requires Walk to read an entire directory into memory before proceeding to walk that directory.
54
-
//
55
-
// Walk does not follow symbolic links.
56
-
//
57
-
// adapted from https://github.com/golang/go/blob/3b770f2ccb1fa6fecc22ea822a19447b10b70c5c/src/path/filepath/path.go#L500
54
+
// The files are walked in lexical order, which makes the output deterministic
55
+
// but requires Walk to read an entire directory into memory before proceeding
56
+
// to walk that directory. Walk does not follow symbolic links.
57
+
//
58
+
// Function adapted from https://github.com/golang/go/blob/3b770f2ccb1fa6fecc22ea822a19447b10b70c5c/src/path/filepath/path.go#L500
0 commit comments