防止 CompileAssemblyFromSource 生成具有重复文件名的临时文件
我的 WCF 应用程序使用在运行时编译的代码来计算报告的某些值。我正在使用 CSharpCodeProvider.CompileAssemblyFromSource 来编译代码。 如果客户端(Silverlight 应用程序)在计算另一个报告时请求一个报告,则 CSharpCodeProvider.CompileAssemblyFromSource 会生成具有重复名称的临时文件,这会导致 IOException(“文件 'C:\Windows\TEMP\uviewdyd.out' 已存在。”)
有谁知道如何防止这种情况?
My WCF application uses code compiled in run time to calculate some values of a report. I'm using CSharpCodeProvider.CompileAssemblyFromSource to compile the code.
If the client (a Silverlight application) request a report while another report is being calculated the CSharpCodeProvider.CompileAssemblyFromSource generates temp files with duplicated name, what lead to a IOException ("The file 'C:\Windows\TEMP\uviewdyd.out' already exists.")
Does anyone know how to prevent this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为不存在。看起来所有三个变体(文件、DOM 和源)都会创建临时文件 (来源)。
最好的方法似乎是为每个编译使用不同的临时路径。请参阅https://stackoverflow.com/a/37136996/5682035:
I don't think there is. It looks like all three variants (file, DOM and source) create temp files (source).
The best way seems to use different temp paths for each compilation. See https://stackoverflow.com/a/37136996/5682035: