Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

Search Results for "PathAppend" in [All]

shlwapi

.

static extern bool PathAppend([In, Out] StringBuilder pszPath, string pszMore);

.

<DllImport("shlwapi.dll", EntryPoint:="PathAppendW", SetLastError:=True, CharSet:=CharSet.Unicode)> _

.

Public Function PathAppend(<MarshalAs(UnmanagedType.LPTStr)>pszPath As System.Text.StringBuilder, _

.

Public Declare Function PathAppend Lib "shlwapi" Alias "PathAppendA" _

.
Documentation
PathAppend at MSDN
.

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.


 
Access PInvoke.net directly from VS: