realpath

realpath

[code]
func Realpath(path string) (string, error) {
	return filepath.Abs(path)
}
[/code]