Path.Combine method can be used to combine different parts of a path.
var path1 = @"D:\DotNetFunda";
var path2 = @"Section\Articles";
var simplePath = path1 + "\\" + path2;
// OR
// Better way to combine parts of a absolute path.
var effectiveWayPath = System.IO.Path.Combine(path1, path2);