移除给定路径的参数
#Include <WinAPIEx.au3>
_WinAPI_PathRemoveArgs ( $sPath )
$sPath | 包含要被移除参数的文件路径 |
成功: | 返回无参数路径 |
失败: | 返回 0设置@error 非0 |
在MSDN中搜索
#Include <APIConstants.au3>
#Include <WinAPIEx.au3>
Opt('MustDeclareVars', 1)
Global $Path = _WinAPI_AssocQueryString('.txt', $ASSOCSTR_COMMAND)
ConsoleWrite('Command: ' & $Path & @CR)
ConsoleWrite('Path: ' & _WinAPI_PathRemoveArgs($Path) & @CR)
ConsoleWrite('Arguments: ' & _WinAPI_PathGetArgs($Path) & @CR)