views:

98

answers:

1

I have a windows shared web hosting, and i want to create there a file watcher which will monitor my images folder and resize the new images.
I thought to make it as a separate component because i may sell to others later.
Any ideas?

+1  A: 

You're going to have a hard time implementing a file watcher in a shared environment. Usually the easiest way to implement something like that is to write it as a Windows service and use the built in .NET file/directory monitoring classes.

Unless you have the ability to install applications/services on your shared server, I think you're going to find that you're out of luck.

Justin Niessner