0

在完成循环之前,我试图从文件中返回一个值两次(第一个值,然后是第二个值)。它当前在重复循环之前从文件中返回第一个值两次。

我可以将信息保存在单独的文件中,但我不知道如何在重复循环之前从每个文件中提取第一个值。想法?

这是我的脚本:

Loop, read, C:\Users\Michael\Google Drive\AutoHotKey\Reference Files\item.txt
{
Loop, parse, A_LoopReadLine, %A_Tab%
    {
    sleep 1500
    send 1
    sleep 1500
    send {enter}
    send 52
    sleep 1500
    send {enter}
    send 4
    sleep 1500
    send {enter}
    sleep 1500
    Send %A_LoopField%
    sleep 1500
    send {enter}
    sleep 1500
    Send %A_LoopField%
}

}

4

1 回答 1

0

您已经获得了第一个值 - 当循环读取该行时,您已经获得了a_loopfield- 这是每个文件中第一行的值。

但是您只在一个文件中查找!这就是为什么你只能得到一个值。如果要遍历.txt该目录中的所有文件,则必须使用通配符。

这是给您的示意图(一个想法;您必须对其进行调整):

Loop, read, C:\Users\Michael\Google Drive\AutoHotKey\Reference Files\*.txt  ;loop through all .txt files in this directory
{
    thisfile = %a_loopfield%
    Loop, parse, A_LoopReadLine, %A_Tab%  ;now parse the file that is being looped
        {
            msgbox The file is: %thisfile%`r and the first line is %a_loopfield%
            break  ;since we only want the *first* line, then don't read any more of this file
    }
}
于 2013-08-05T00:43:31.647 回答