using System;
using System.IO;
public class Program
{
public static void Main()
string path = @"\file03\Wholesale_Solutions\Statements\Checked";
string arch = @"Archive\2015";
string npath = Path.Combine(path, arch);
Console.WriteLine (npath);
}