scenario:



-folder x resides on server a, server b ,server c

-x contains same set of files in a,b,c



whenever any file gets modified in a, it should get also modified in b and c as well

similarly b->a,c and c->a,b



my idea of implementaion is

-when ever any file is modified on a server, compare timestamps and force copy the modified in the other two



How should i go for implementing it?

1)how to check if a file is modified

2)how often this check should be done and how this should be implemented



should a service be running to perform thi check



i want to do this using .NET



Let me know your thoughts and suggestions