@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: PathIsRoot - Parses a path to determine if it is a directory root. !!!!C# Signature: /// <summary> /// Parses a path to determine if it is a directory root. /// </summary> /// <param name="pszPath">A pointer to a null-terminated string of maximum length MAX_PATH that contains the path to be validated.</param> /// <returns>Returns TRUE if the specified path is a root, or FALSE otherwise.</returns> /// <example>Returns TRUE for paths such as "\", "X:\" or "\\server\share". Paths such as "..\path2" or "\\server\" return FALSE.</example> [DllImport("shlwapi.dll", EntryPoint = "PathIsRootW", SetLastError = True, CharSet = CharSet.Unicode)] [return: MarshalAs(UnmanagedType.Bool)] static extern bool PathIsRoot([MarshalAs(UnmanagedType.LPTStr)]string pszPath); !!!!VB.NET Signature ''' <summary> ''' Parses a path to determine if it is a directory root. ''' </summary> ''' <param name="pszPath">A pointer to a null-terminated string of maximum length MAX_PATH that contains the path to be validated.</param> ''' <returns>Returns TRUE if the specified path is a root, or FALSE otherwise.</returns> ''' <example>Returns TRUE for paths such as "\", "X:\" or "\\server\share". Paths such as "..\path2" or "\\server\" return FALSE.</example> <DllImport("shlwapi.dll", EntryPoint:="PathIsRootW", SetLastError:=True, CharSet:=CharSet.Unicode)> _ Public Function PathIsRoot(<MarshalAs(UnmanagedType.LPTStr)>pszPath As String) As <MarshalAs(UnmanagedType.Bool)> Boolean End Function !!!!VB Signature: Public Declare Function PathIsRoot Lib "shlwapi" Alias "PathIsRootA" _ (ByVal pszPath As String) As Long !!!!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: PathIsRoot@msdn on MSDN
Edit shlwapi.PathIsRoot
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.