根据您提供的相对路径创建一个路径,返回新创建的绝对路径
#Include <File.au3>
_PathFull($sRelativePath [, $sBasePath = @WorkingDir])
$sRelativePath | 要创建的相对路径 |
$sBasePath | [可选参数] 基准路径. 默认(default) = @WorkingDir |
#include <File.au3>
Local $TestPath = _PathFull(@ScriptDir & "..\..\test")
MsgBox(4096, "demo _PathFull", @ScriptDir & @LF & $TestPath)