向路径字符串添加文件扩展名
#Include <WinAPIEx.au3>
_WinAPI_PathAddExtension ( $sPath [, $sExt] )
$sPath | 要添加扩展名的路径. 如果路径具有扩展名则不添加. |
$sExt | [可选参数] 文件名扩展. 如果为空则添加".exe"扩展 |
成功: | 返回结果字符串. 如果添加则@extended为1, 反之为0. |
失败: | 返回 0并设置@error非0 |
在MSDN中搜索
#Include <WinAPIEx.au3>
Opt('MustDeclareVars', 1)
Global $Path[2] = ['C:\Documents\Test.txt', 'C:\Documents\Test']
For $i = 0 To 1
ConsoleWrite($Path[$i] & ' => ' & _WinAPI_PathAddExtension($Path[$i], '.doc') & @CR)
Next