I want an R script to continuously run and check for files in a folder and do something with those files.
The code simply checks for a file, then moves the file to somewhere else and renames it, deleting the old file (in reality it's a bit more elabore than this).
If I run the script it works fine, however I want R to automatically detect for the files. In other words, is there a way to have R run the script continuously so that I don't have to run the script if I put files in that folder?

inotify, which allows to monitor file and directories change in real time. – juba Jan 28 at 14:22Autohotkeyis quite good for scripting things like this. Ofcourse only if it is just about moving files around.. for any file content manipulation which R can do better, go with R.. – geektrader Jan 28 at 14:47