PathIsHTMLFile (shlwapi)
Last changed: anonymous

.
Summary
PathIsHTMLFile - Determines if a file is an HTML file. The determination is made based on the content type that is registered for the file's extension.

C# Signature:

/// <summary>
/// Determines if a file is an HTML file. The determination is made based on the content type that is registered for the file's extension.
/// </summary>
/// <param name="pszFile">The address of a character buffer that contains the path and name of the file.</param>
/// <returns>Returns nonzero if the file is an HTML file, or zero otherwise.</returns>
[DllImport("shlwapi.dll", EntryPoint = "PathIsHTMLFileW",  SetLastError = True, CharSet = CharSet.Unicode)]
[return: MarshalAs(UnmanagedType.Bool)]
static extern bool PathIsHTMLFile([MarshalAs(UnmanagedType.LPTStr)]string pszFile);

VB.NET Signature:

''' <summary>
''' Determines if a file is an HTML file. The determination is made based on the content type that is registered for the file's extension.
''' </summary>
''' <param name="pszFile">The address of a character buffer that contains the path and name of the file.</param>
''' <returns>Returns nonzero if the file is an HTML file, or zero otherwise.</returns>
<DllImport("shlwapi.dll", EntryPoint:="PathIsHTMLFileW",  SetLastError:=True, CharSet:=CharSet.Unicode)> _
Public Function PathIsHTMLFile(<MarshalAs(UnmanagedType.LPTStr)>pszFile As String) As <MarshalAs(UnmanagedType.Bool)> Boolean
End Function

VB Signature:

Public Declare Function PathIsHTMLFile Lib "shlwapi" _
        (ByVal pszFile 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