PathUndecorate (shlwapi)
Last changed: -202.74.138.1

.
Summary
TODO - a short description

C# Signature:

/// <summary>
/// Removes the decoration from a path string
/// </summary>
/// <param name="pszPath">A null-terminated string of length MAX_PATH that contains the path. When the function returns, pszPath points to the undecorated string.</param>
[DllImport("shlwapi.dll", EntryPoint = "PathUnDecorateW",  SetLastError = true, CharSet = CharSet.Unicode)]
static extern void PathUndecorate([MarshalAs(UnmanagedType.LPTStr)]string pszPath)

VB.NET Signature

''' <summary>
''' Removes the decoration from a path string
''' </summary>
''' <param name="pszPath">A null-terminated string of length MAX_PATH that contains the path. When the function returns, pszPath points to the undecorated string.</param>
<DllImport("shlwapi.dll", EntryPoint:="PathUnDecorateW",  SetLastError:=true, CharSet:=CharSet.Unicode)> _
Public Sub PathUnDecorate(<MarshalAs(UnmanagedType.LPTStr)>pszPath As String)
End Sub

VB Signature:

Public Declare Sub PathUndecorate Lib "shlwapi" Alias "PathUndecorateA" _
        (ByVal pszPath As String)

User-Defined Types:

None.

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Documentation