防止 CompileAssemblyFromSource 生成具有重复文件名的临时文件

发布于 2024-11-29 05:39:14 字数 278 浏览 0 评论 0原文

我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

记忆消瘦 2024-12-06 05:39:14

我认为不存在。看起来所有三个变体(文件、DOM 和源)都会创建临时文件 (来源)。
最好的方法似乎是为每个编译使用不同的临时路径。请参阅https://stackoverflow.com/a/37136996/5682035

CSharpCodeProvider prov = new CSharpCodeProvider();
CompilerParameters parms = new CompilerParameters();
parms.TempFiles = new TempFileCollection(tempdir);

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:

CSharpCodeProvider prov = new CSharpCodeProvider();
CompilerParameters parms = new CompilerParameters();
parms.TempFiles = new TempFileCollection(tempdir);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文