如何使用autohotkey开始存在时对文件进行操作?

时间:2015-06-24 19:08:56

标签: autohotkey

我已经得到了以下一些代码,据我所知,它应该可以正常工作。目标是不断检查Z:\ auto_run.txt的存在。一旦存在,文件的每一行(作为文件的路径)都应该在notepad ++中打开。最后,删除Z:\ auto_run.txt。

最后一点我已经独立工作了。问题是如何不断检查文件的存在?当我在标准的Autohotkey.ahk中运行以下代码时,它似乎不起作用,即使文件存在,也没有任何反应。

IfExist, Z:\auto_run.txt
{
    Loop, read, Z:\auto_run.txt
    {
        IfExist, Z:\%A_LoopReadLine%
            Run, C:\Program Files (x86)\Notepad++\notepad++.exe Z:\%A_LoopReadLine%
    }
    FileDelete, Z:\autohotkey\auto_run.txt
}

1 个答案:

答案 0 :(得分:3)

将整个事情放在循环中吗?

Loop
{
    IfExist, Z:\auto_run.txt
    {
        Loop, read, Z:\auto_run.txt
        {
            IfExist, Z:\%A_LoopReadLine%
                Run, C:\Program Files (x86)\Notepad++\notepad++.exe Z:\%A_LoopReadLine%
        }
        FileDelete, Z:\autohotkey\auto_run.txt
    }

    Sleep, 100 ; Short sleep
}

如果您不想将脚本锁定到循环,您也可以使用计时器。

#Persistent

fullFilePath := "Path\To\File.txt"
SetTimer, CheckForFile, 500
return

CheckForFile:
    if (FileExist(fullFilePath)) {
        ; Do something with the file...
        Loop, Read, %fullFilePath%
        {
            MsgBox % A_LoopReadLine
        }

        ; Delete the file
        FileDelete, %fullFilePath%
    }
return