Need a script for a windows server that does this: When file xyz.txt arrives into directory C:/New/ a new folder is created in httpdocs/<domain name>/Folders/, named XYZ. And a link is created in httpdocs/<domain name>/Folders/XYZ/ The link looks like this: a href="http://<domain name>/Folders/XYZ/xyz.txt Then xyz.txt is moved to directory C:/Output/.
What you will need to do is create a program that checks the news folder every few minutes or so and then creates the new folders and moves the files as it finds them. If it was a linux server you could do this with php and cron. Re's Rob Whisonant
It cannot be real time, you have to poll for new files in the directory and create another directory.