I recently learned about Path.Combine which combines two strings into a path, but I wonder what is, if any advantage of using Path.Combine compared to what we currently use in production which is something like the following:
var path = @":\somepath\"; var filename = postedFile.FileName;
var fullPath = path + filename;
Is it better going forwards to use Path.Combine(path, fileName)
Thanks