Golang で現在のパス (カレントディレクトリ) を取得する

package main

import (
	"os"
	"fmt"
)

func main() {
	currentDir, _ := os.Getwd()
	fmt.Print(currentDir)
}
カテゴリー:Go