运行环境:
golang1.9.2+win7x64
golang1.9.2+centos6.5×64
/*获取当前文件执行的路径*/ func GetCurPath() string { file, _ := exec.LookPath(os.Args[0]) //得到全路径,比如在windows下E:\\golang\\test\\a.exe
path, _ := filepath.Abs(file) rst := filepath.Dir(path) return rst }
运行环境:
golang1.9.2+win7x64
golang1.9.2+centos6.5×64
/*获取当前文件执行的路径*/ func GetCurPath() string { file, _ := exec.LookPath(os.Args[0]) //得到全路径,比如在windows下E:\\golang\\test\\a.exe
path, _ := filepath.Abs(file) rst := filepath.Dir(path) return rst }
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。