替换文件夹所在完整有效路径名为相关的环境字符串.
#Include <WinAPIEx.au3>
_WinAPI_PathUnExpandEnvStrings ( $sPath )
$sPath | 未展开的路径. |
成功: | 返回未展开的字符串. |
失败: | 返回空字符串,设置 @error 标志为非 0 值. |
在MSDN中搜索
#Include <WinAPIEx.au3>
Opt('MustDeclareVars', 1)
Global $Path = @MyDocumentsDir
ConsoleWrite('Before: ' & $Path & @CR)
ConsoleWrite('After : ' & _WinAPI_PathUnExpandEnvStrings($Path) & @CR)