解析路径,并返回路径中第一个反斜杠后面的部分.
#Include <WinAPIEx.au3>
_WinAPI_PathFindNextComponent ( $sPath )
$sPath | 解析的路径. 路径组件由反斜线分隔, 例如 "c:\path1\path2\file.txt" 有四个组成部分: c:, 路径1, 路径2, 与 file.txt. |
成功: | 返回截断的路径. |
失败: | 返回空字符串,设置 @error 标志为非 0 值. |
在MSDN中搜索
#Include <WinAPIEx.au3>
Opt('MustDeclareVars', 1)
Global $Str, $Path = @ScriptFullPath
While $Path
ConsoleWrite($Path & @CR)
$Path = _WinAPI_PathFindNextComponent($Path)
WEnd