I've got the following bit of code, which should work as far as I know. The goal is to continually check for the existence of Z:\auto_run.txt. Once it exists, each line of the file (being a path to a file), should be opened in notepad++. Finally, delete Z:\auto_run.txt.
The last bit I have gotten to work independently. The question is how to continually check for the file's existence? When I run the below code in a standard Autohotkey.ahk, it does not seem to work, and even when the file exists, nothing happens.
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
}
Would putting the whole thing in a loop work?
If you don't want to lock the scrip to the loop you can use a timer as well.