Add backslash to string
I have a path and I want to add to it some new sub folder named test. Please help me find out how to do that. My code is : string path = Environment.GetFolderPath(Environment.SpecialFolder.MyPictures); Console.WriteLine(path+"\test"); The result I'm getting is : "c:\Users\My Name\Pictures est" Please help me find out the right way. Do not try to build pathnames concatenating strings. Use the Path.Combine method string path = Environment.GetFolderPath(Environment.SpecialFolder.MyPictures); Console.WriteLine(Path.Combine(path, "test")); The Path class contains many useful static methods to