Function Reference


_WinAPI_PathIsContentType

Determines if a file's registered content type matches the specified content type

#include <WinAPIShPath.au3>
_WinAPI_PathIsContentType ( $sFilePath, $sType )

Parameters

$sFilePath The file whose content type will be compared.
$sType The content type string. For example, "application/x-msdownload", "image/jpeg", "text/plain", etc.

Return Value

True: the file's content type matches the specified content type.
False: the file's content type do not match.

See Also

Search PathIsContentType in MSDN Library.

Example

#include <Array.au3>
#include <File.au3>
#include <WinAPIShPath.au3>

_Example()
Func _Example()
        Local $aFileList = _FileListToArray(@SystemDir, '*.*', 1)
        Local $aSortList[UBound($aFileList) - 1]
        Local $iCount = 0

        For $i = 1 To $aFileList[0]
                If _WinAPI_PathIsContentType($aFileList[$i], 'text/xml') Then
                        $aSortList[$iCount] = $aFileList[$i]
                        $iCount += 1
                EndIf
        Next
        If $iCount Then
                ReDim $aSortList[$iCount]
                _ArrayDisplay($aSortList, '_WinAPI_PathIsContentType')
        EndIf
EndFunc   ;==>_Example