Function Reference

_WinAPI_FindExecutable

指定されたファイル名に関連付けられた実行ファイルの名前を取得します。

#Include <WinAPI.au3>
_WinAPI_FindExecutable($sFileName [, $sDirectory = ""])

 

パラメータ

$sFileName 既存ファイルの完全修飾パス
$Directory [オプション]デフォルトディレクトリ

 

返し値

成功: 指定されたファイルを実行したときに関連付けによって"開かれる"実行ファイルのフルパス
Failure: 関連付けが見つからなかった場合は空白が返され、@errorが設定されます。

 

注意

なし。

 

関連

 

こちらも参照

MSDNライブラリでFindExecutableを検索して下さい。

 


#AutoIt3Wrapper_Au3Check_Parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
Opt('MustDeclareVars', 1)

#include <WinAPI.au3>
MsgBox(4096, "Find Executable", "file " & @ScriptName & @CRLF & "Executable: " & _WinAPI_FindExecutable(@ScriptName))