比较两路径是否共享一个普通前缀
#Include <WinAPIEx.au3>
_WinAPI_PathCommonPrefix ( $sPath1, $sPath2 )
$sPath1 | 第一个路径名 |
$sPath2 | 第二个路径名 |
成功: | 普通前缀. @extended标记包含路径中普通前缀的字符. |
失败: | 返回 0并设置@error非0 |
在MSDN中搜索
#Include <WinAPIEx.au3>
Opt('MustDeclareVars', 1)
Global $Path1 = 'C:\Documents\Test.txt'
Global $Path2 = 'C:\Documents\Archive\Sample.txt'
ConsoleWrite('Path1 : ' & $Path1 & @CR)
ConsoleWrite('Path2 : ' & $Path2 & @CR)
ConsoleWrite('Prefix: ' & _WinAPI_PathCommonPrefix($Path1, $Path2) & @CR)