One way of accomplishing this:
var nodeId = TreePathUtils.GetNodeIdByNodeGUID(YourGUID, SiteContext.CurrentSiteName);
var node = TreeHelper.SelectSingleNode(nodeId);
You can then access the properties on the TreeNode object (node), such as NodeAliasPath, RelativeURL and AbsoluteURL.