PathAppend (shlwapi)
Last changed: -171.161.160.10

.
Summary
Appends a path string to another path string in place

C# Signature:

[DllImport("shlwapi.dll", CharSet=CharSet.Auto)]
static extern bool PathAppend([In, Out] StringBuilder pszPath, string pszMore);

Notes:

This is similar, but not identical, to Path.Combine. For example, appending "C:\foo" with "\bar" yields "C:\foo\bar" rather than "\bar". Also note that SetLastError=false, so a return value of false cannot be further diagnosed.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Alternative Managed API:

Path.Combine

Documentation
PathAppend on MSDN