我想让我的tail函数获取logfile中的最后一行并将其转换为数字。这样我就可以在if条件下使用它。
file = C:\Users\%A_UserName%\Documents\logTime.txt
Tail(k,file) ; Return the last k lines of file
{
Loop Read, %file%
{
i := Mod(A_Index,k)
L%i% = %A_LoopReadLine%
}
L := L%i%
Loop % k-1
{
IfLess i,1, SetEnv i,%k%
i-- ; Mod does not work here
L := L%i% "`n" L }
;Return L
;msgbox % Tail(1,file)
}
if条件
While (PrLoad > 5 ) ; Assign the Number you want.
{
If (Tail(1, file) = %A_Hour%%A_Min%)
{
msgBox is equal to Current Time %Tail(1, file)%
Sleep 60000
}
Else if (Tail(1, file) > %A_Hour%%A_Min% )
{
msgBox Tail(1, file) is greater then %A_Hour%%A_Min%
Sleep 60000
}
日志文件由以下内容构成:
FileAppend, %A_Hour%%A_Min%`n, C:\Users\%A_UserName%\Documents\logTime.txt
我确信我将错误的函数传递给if条件。%L%
如何将字符串转换为要通过if语句进行比较的数字?
答案 0 :(得分:0)
您使用的是最新版本的AutoHotkey吗?如果没有,请从autohotkey.com或ahkscript.org下载最新版本
从我看到你使用的是Pseudo Arrays,这是Old Style。
在此处阅读对象/阵列的当前状态:
http://ahkscript.org/docs/Objects.htm http://ahkscript.org/docs/objects/Object.htm
我看到的主要问题是错误地使用了围绕变量的%。功能不需要%%的命令需要%%。
答案 1 :(得分:0)
我希望您了解Tail(1, file) > %A_Hour%%A_Min%
可能导致意外结果的事实。
假设%A_Hour %% A_Min%为1250
而Tail(1,file)返回0105
。
01:05可能会在12:50之后发生,但是你的剧本不会看到这一点
现在你可以继续添加日,月和年,但这仍然不会消除所有问题。
这就是大多数人使用时间戳的原因,这些时间戳只是表示自1970年以来经过了多少秒(左右)。
... AHK可以使用字符串,就好像它们是数字一样,所以不应该有任何问题 试一试:
logFile = C:\Users\%A_UserName%\Documents\logTime.txt
;create a new timestamp and add it to the log
timestamp := GetUnixTimestamp()
FileAppend, %timestamp% `n, %logFile%
;wait a second
Sleep, 1000
;create another timestamp
currentTimestamp := GetUnixTimestamp()
;get old timestamp from log
timestampFromLog := FileGetLastLine(logFile)
MsgBox, %timestampFromLog% - Last timestamp from the log `n%currentTimestamp% - Current timestamp
If (currentTimestamp > timestampFromLog)
MsgBox, Everything ran as expected!
GetUnixTimestamp() {
T := A_NowUTC
T -= 1970,s
Return T
}
FileGetLastLine(file) {
Loop, Read, %file%
lineCount := A_Index
FileReadLine, lastLine, %file%, %lineCount%
Return lastLine
}