diff --git a/ethutil/path.go b/ethutil/path.go new file mode 100644 index 0000000000000000000000000000000000000000..97f58ab7e57d61f35d4b8298c156b6b86c2091bf --- /dev/null +++ b/ethutil/path.go @@ -0,0 +1,20 @@ +package ethutil + +import ( + "os/user" + "strings" +) + +func ExpandHomePath(p string) (path string) { + path = p + + // Check in case of paths like "/something/~/something/" + if path[:2] == "~/" { + usr, _ := user.Current() + dir := usr.HomeDir + + path = strings.Replace(p, "~", dir, 1) + } + + return +}