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 PathCombine and Path.Combine. For example, appending "C:\foo" with "\bar" yields "C:\foo\bar" rather than "C:\bar" or "\bar", respectively.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Alternative Managed API:

Path.Combine

Documentation