2

在调试项目 Visual Studio 时显示一些错误。当我尝试在数据库文件(.mdf 扩展名)中添加表时,VisualStudio 会自动重新启动。错误列表-->

    System.IO.FileNotFoundException: Error reading the C:\Windows\TEMP\ directory.
   at System.IO.FileSystemWatcher.StartRaisingEvents()
   at System.IO.FileSystemWatcher.set_EnableRaisingEvents(Boolean value)
   at Microsoft.IisExpress.SysTray.TrayAppHiddenForm.TrayAppHiddenForm_Load(Object sender,    EventArgs e)
   at System.Windows.Forms.Form.OnLoad(EventArgs e)
   at System.Windows.Forms.Form.OnCreateControl()
   at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
   at System.Windows.Forms.Control.CreateControl()
   at System.Windows.Forms.Control.WmShowWindow(Message& m)
   at System.Windows.Forms.Control.WndProc(Message& m)
   at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
   at System.Windows.Forms.ContainerControl.WndProc(Message& m)
   at System.Windows.Forms.Form.WmShowWindow(Message& m)
   at System.Windows.Forms.Form.WndProc(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
   at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)

请帮我解决这个错误。

4

2 回答 2

1

嘿,这也发生在我身上,当我直接进入目录 C:\Windows\TEMP 时问题解决了,系统要求我访问该文件夹,然后我单击“是”,以便当前用户拥有该文件夹的权限并且错误消失了。这是我的 Windows UPDATE 之后的访问权限问题

于 2020-06-11T08:27:41.697 回答
-1

这篇博文绝对解决了我们面临的问题(这将描述我们面临的问题)。- http://devatheart.azurewebsites.net/2011/04/18/troubleshooting-xmlserializer-failure/

我们有这段代码

System.Diagnostics.Process.Start(RetrievedURL); 它在按钮单击和打开网页的背景中生成 IE 进程(因为 IE 是网络服务器上的默认浏览器)。

这不是一件聪明的事情,但我们删除了该代码,它肯定会在后台停止 IE 进程。

上面的帖子解释了它是如何与 XML 序列化失败相关联的。感谢您的研究和这篇博文 Slobodan Stipic,又名 Slobo。

希望这个解决方案有所帮助。

于 2013-03-26T11:01:20.967 回答