PathCombine (shlwapi)
Last changed: -85.75.12.132

.
Summary
TODO - a short description

C# Signature:

[DllImport("shlwapi.dll", CharSet=CharSet.Auto)]
static extern string PathCombine([Out] StringBuilder lpszDest, string lpszDir, string lpszFile);

VB Signature:

Declare Function PathCombine Lib "shlwapi.dll" (TODO) As TODO

Notes:

This is similar, but not identical, to PathAppend and Path.Combine. For example, combining "C:\foo" with "\bar" yields "C:\bar" rather than "C:\foo\bar" or "\bar" respectively.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Alternative Managed API:

Path.Combine

Documentation