Why not use the built-in API to get it?
var blogs = BlogHelper.GetBlogs(SiteContext.CurrentSiteName, 0, null, null, "BlogName = 'Your Blog Name'"); // not NodeAliasPath
foreach(DataRow dr in blogs.Tables[0].Rows)
{
string blogName = ValidationHelper.GetString(dr["BlogName"], "");
}