1. 程式人生 > >go語言列印當前應用的執行路徑

go語言列印當前應用的執行路徑

在專案的main函式裡面增加程式碼。就可以讀出當前程式的目錄啦

// execPath returns the executable path.
func execPath() (string, error) {
	file, err := exec.LookPath(os.Args[0])
	if err != nil {
		return "", err
	}
	return filepath.Abs(file)
}