Funktionreferenz


_WinAPI_PathIsExe

Beschreibung anzeigen in

Prüft anhand der Dateierweiterung, ob eine Datei ausführbar ist

#include <WinAPIShPath.au3>
_WinAPI_PathIsExe ( $sFilePath )

Parameter

$sFilePath Der zu prüfende Pfad.

Rückgabewert

True: Die Dateiendung ist .cmd, .bat, .pif, .scf, .exe, .com, oder .scr.
False: Keine Dateiendung.

Siehe auch

Suche nach PathIsExe in der MSDN Bibliothek.

Beispiel

#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_PathIsExe($aFileList[$i]) Then
            $aSortList[$iCount] = $aFileList[$i]
            $iCount += 1
        EndIf
    Next
    If $iCount Then
        ReDim $aSortList[$iCount]
    Else
        Exit
    EndIf

    _ArrayDisplay($aSortList, '_WinAPI_PathIsContentType')
EndFunc   ;==>_Example