c#,在流读取 msbuild 日志文件时出现问题,而 msbuild 记录器仍在写入它
我尝试使用 StreamReader 通过 FileSystemWatcher 实时读取 MSBuild 日志文件。当 MSBuild 仍在写入时,它总是提示我文件异常。当 MSBuild 完成编译时,我的代码可能只能向我的 RichTextBox 控件显示 MSBuild 日志内容...
是否有其他方法可以编写代码来读取现在由另一个进程使用的文件?例如,notepad.exe可以随时读取文件而无需担心...
I try to use StreamReader to read the MSBuild log file real time by using FileSystemWatcher. It always prompt me File Exception when MSBuild is still writing to it. My code may only managed to show the MSBuild log content to my RichTextBox control when MSBuild completed the compilation...
Is there any alternative to write a code for reading a file which is now using by another process? Such as, notepad.exe read file in anytime without concern...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您如何实例化 StreamReader?
如果您只是将文件路径传递到构造函数中,那么这可能是您的问题,因为这样做不会指定正确的文件共享权限。
试试这个:
How are you instantiating the StreamReader?
If you are simply passing the file path into the constructor then that may be your problem as doing so will not specify the correct file sharing rights.
Try this:
您可以尝试使用“Open”方法的重载之一来指定您仅尝试读取。像这样:
You can try to use one of the overloads of the 'Open' method, to specify you are only trying to read. Like this: