Hi, I have created a vb application, and I have 5,000 users using this application all at the same time... Right now I have this application using:
if fso.fileexists(app.path & "\test.txt") then[/color blue] 'etc[/color green]
The application has a timer which runs every 30 seconds, and checks for this file using fso.. Well as you can imagine, it bogs down the server. Normally the files test.txt is not there.. Its only there about 3 times a day.
Is there a better way to check for the existance of this file? Can I have 5,000 computers monitoring the share for a newly created file called test.txt, or will this kill the server?
Thanks
if fso.fileexists(app.path & "\test.txt") then[/color blue] 'etc[/color green]
The application has a timer which runs every 30 seconds, and checks for this file using fso.. Well as you can imagine, it bogs down the server. Normally the files test.txt is not there.. Its only there about 3 times a day.
Is there a better way to check for the existance of this file? Can I have 5,000 computers monitoring the share for a newly created file called test.txt, or will this kill the server?
Thanks