opening a file in WINDOWS/system32/LogFiles with
using (StreamReader r = new StreamReader(fileName))
generates exception "because the file is in use by another process". How can I figure out what the other process is? Could it be the server updating the logs? If it is, how can I ensure that my associated scheduled task can also have access?
thanks!
I'm afraid I don't have the auth to install programs on this server.