getcwd

getcwd

[code]
func Getcwd() (string, error) {
	dir, err := os.Getwd()
	return dir, err
}
[/code]