这个autoHotKey脚本会产生一个疯狂的输出:
但.stversions的完整路径是 - E:\ fre \ private \ HtmlDevelop \ AutoHotKey.stversions 并不是 - A_LoopFileDir = E:\ fre \ private \ HtmlDevelop.stversions
确保有可能解决这个问题。但为什么会这样呢?这是autohotkey中的一个错误吗?Loop, %A_ScriptDir%/*.*, 2 , 1
{
if(StrLen(A_LoopFileFullPath) < StrLen(A_ScriptDir))
{
; thats bullshit
continue
}
;~ ToolTip,A_LoopFileFullPath=%A_LoopFileFullPath%
MsgBox,,,A_LoopFileFullPath= %A_LoopFileFullPath% `n A_LoopFileFullPath=%A_LoopFileFullPath% `n A_LoopFileName=%A_LoopFileName% `n A_LoopFileDir=%A_LoopFileDir% `n A_ScriptDir=%A_ScriptDir%
}