码迷,mamicode.com
首页 > 其他好文 > 详细

golang filepath.Walk遍历指定目录下的所有文件

时间:2015-04-07 15:18:08      阅读:443      评论:0      收藏:0      [点我收藏+]

标签:

package main

import (
    "fmt"
    "os"
    "path/filepath"
)

func walkFunc(path string, info os.FileInfo, err error) error {
    fmt.Printf("%s\n", path)
    return nil
}

func main() {
    //遍历打印所有的文件名
    filepath.Walk("C:/Documents and Settings/xxx/Desktop/Copy of change-sub", walkFunc)
}

 

golang filepath.Walk遍历指定目录下的所有文件

标签:

原文地址:http://www.cnblogs.com/rojas/p/4398215.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!