this I have done I want to go two folder back from the root
Server.MapPath to go two folder back from root Anonymous User 1348 28 May 2018 this I have done HttpContext.Current.Server.MapPath(@"~\~\~\Content\")I want to go two folder back from the root
If you really need the grandparent path, you can get it from the root path using Path.GetDirectoryName():
hope it resolves your problem