beego/utils/file.go
2013-12-09 13:30:19 +08:00

12 lines
127 B
Go

package utils
import (
"os"
"path/filepath"
)
func SelfPath() string {
path, _ := filepath.Abs(os.Args[0])
return path
}