I'm trying to read a log file of log4net:
FileStream fs = new FileStream(filePath, FileMode.Open, FileAccess.Read)
and I get the Exception specified on the topic. I guess log4Net is holdin an exclusive lock on the file, but, as for example Notepad++ can read the file, I guess is technically possible to do this.
Any help?