代码如下


package main
import (
  “fmt”
  “log”
  “os”
  “path/filepath”
)
func main() {
  pwd, _ := os.Getwd()
  //获取当前目录下的文件或目录名(包含路径)
  filepathNames, err := filepath.Glob(filepath.Join(pwd, “*”))
  if err != nil {
      log.Fatal(err)
  }
  for i := range filepathNames {
      fmt.Println(filepathNames[i]) //打印path
  }
}
说点什么
支持Markdown语法
好耶,沙发还空着ヾ(≧▽≦*)o
Loading...