/// <summary>
/// Verifies that a path is a valid directory.
/// </summary>
/// <param name="pszPath">A pointer to a null-terminated string of maximum length MAX_PATH that contains the path to verify.</param>
/// <returns>Returns (BOOL)FILE_ATTRIBUTE_DIRECTORY if the path is a valid directory; otherwise, FALSE.</returns>
[DllImport("shlwapi.dll", EntryPoint = "PathIsDirectoryW", SetLastError = True, CharSet= CharSet.Unicode)]
[return: MarshalAs(UnmanagedType.Bool)]
static extern bool PathIsDirectory([MarshalAs(UnmanagedType.LPTStr)]string pszPath);
''' <summary>
''' Verifies that a path is a valid directory.
''' </summary>
''' <param name="pszPath">A pointer to a null-terminated string of maximum length MAX_PATH that contains the path to verify.</param>
''' <returns>Returns (BOOL)FILE_ATTRIBUTE_DIRECTORY if the path is a valid directory; otherwise, FALSE.</returns>
<DllImport("shlwapi.dll", EntryPoint:="PathIsDirectoryW", SetLastError:=True, CharSet:=CharSet.Unicode)> _
Public Function PathIsDirectory(<MarshalAs(UnmanagedType.LPTStr)>pszPath As String) As <MarshalAs(UnmanagedType.Bool)> Boolean
End Function
Public Declare Function PathIsDirectory Lib "shlwapi" Alias "PathIsDirectoryA" _
(ByVal pszPath As String) As Long
None.
Do you know one? Please contribute it!
None.
Please add some!
Please add some!