mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 14:50:55 +00:00
refactor(FileSystem): add comments function
This commit is contained in:
parent
01a99edf80
commit
872b787e6c
3
fs.go
3
fs.go
@ -13,6 +13,9 @@ func (d FileSystem) Open(name string) (http.File, error) {
|
|||||||
return os.Open(name)
|
return os.Open(name)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Walk walks the file tree rooted at root in filesystem, calling walkFn for each file or
|
||||||
|
// directory in the tree, including root. All errors that arise visiting files
|
||||||
|
// and directories are filtered by walkFn.
|
||||||
func Walk(fs http.FileSystem, root string, walkFn filepath.WalkFunc) error {
|
func Walk(fs http.FileSystem, root string, walkFn filepath.WalkFunc) error {
|
||||||
|
|
||||||
f, err := fs.Open(root)
|
f, err := fs.Open(root)
|
||||||
|
Loading…
Reference in New Issue
Block a user