CmisSync.Lib.Utils.PathCombine C# (CSharp) Method

PathCombine() public static method

Like Path.Combine, but does not choke on special characters. Special characters are a separate concern, use this method if it is not the current concern.
public static PathCombine ( string localDirectory, string filename ) : string
localDirectory string
filename string
return string
        public static string PathCombine(string localDirectory, string filename)
        {
            return localDirectory + Path.DirectorySeparatorChar + filename;
        }