I have a client who uploads an XML file to a directory on my server using a third party script over which I have no control. Upon upload the file gets processed by a php script.
I have a cronjob which checks the dir every hour to see whether a file has been uploaded but if the upload takes place at, say, 3:01pm it won't be processed until 4:00pm. My host forbids running a cronjob more frequently than once per hour.
Is there a way to detect and advise immmediately upon a file arriving?
make a file checker.sh , and run it in background ./checker.sh /dev/null 2>&1 & , or run it in screen