函数参考


_PathFull

根据您提供的相对路径创建一个路径,返回新创建的绝对路径

#Include <File.au3>
_PathFull($sRelativePath [, $sBasePath = @WorkingDir])

参数

$sRelativePath 要创建的相对路径
$sBasePath [可选参数] 基准路径. 默认(default) = @WorkingDir

返回值

支持 UNC 网络路径
传递 "\" 将得到 $sBasePath 所在的驱动器根目录
传递 "" 或者 "." 返回 $sBasePath .
一个根据$sBasePath创建的相对路径所在的绝对路径. 要绕过这个问题,使用一个绝对路径.

注意/说明

None.

相关

_PathMake, _PathSplit, DirCreate, FileChangeDir

示例/演示


#include <File.au3>

Local $TestPath = _PathFull(@ScriptDir & "..\..\test")
MsgBox(4096, "demo _PathFull", @ScriptDir & @LF & $TestPath)