用户 AppData 文件夹中的 ReflectedSchemas 文件夹 (Visual Studio)

发布于 2024-07-21 00:34:09 字数 289 浏览 11 评论 0原文

今天我运行 WinDirStat 来检查我的硬盘被什么填满了。 我惊讶地发现该文件夹包含 4.6 GB(!):

C:\Users\...\AppData\Roaming\Microsoft\VisualStudio\9.0\ReflectedSchemas

该文件夹及其包含的文件的用途是什么? 有没有办法以安全的方式删除这些文件?

谢谢!

Today I ran WinDirStat to check what is filling up my harddisk. I was surprised to see that this folder contains 4.6 GB (!):

C:\Users\...\AppData\Roaming\Microsoft\VisualStudio\9.0\ReflectedSchemas

What is the purpose of this folder and the files it contains? Is there a way to get rid of these files in a safe way?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

如此安好 2024-07-28 00:34:09

我尝试完全清空该文件夹,但自从完成后没有发现任何问题。 在 VS 中启动项目时,会创建一个新架构。

编辑:当您认为自己搞砸了事情时,您也可以移动文件夹并将其放回去......

I've tried to empty the folder completely, and have no problems found since i've done. When launching a project in VS, a new schema was created.

Edit: you can also move the folder and put it back when you believe you screwed things up...

拥醉 2024-07-28 00:34:09

这让我抓狂,希望它能在 VS 2010 中得到修复; 但是,我找到了解决这个问题的另一种方法。

我的“修复”是使用“Junction”工具将文件夹映射到另一个驱动器。 如果您像我一样并且有第二个驱动器,那么您可以使用 Windows 的连接工具创建类似符号链接的内容,以将文件夹映射到另一个驱动器。

最重要的是,您不再需要使用命令行。 这个免费软件工具效果很好:Junction Link Magic

This drives me crazy and hopefully it will be fixed in VS 2010; however, I found another solution to this problem.

My "fix" is to use the "Junction" tool to map the folder to another drive. If you're like me and have a second drive, then you can use window's Junction tool to create something like a symbolic link to map the folder to another drive.

Best of all, you no longer need to use the command line. This freeware tool works great: Junction Link Magic.

你是年少的欢喜 2024-07-28 00:34:09

这些文件给我带来了问题,因为我正在使用 Windows 的漫游配置文件功能,因此我将它们符号链接(为其创建符号链接)到本地 AppData 文件夹:

cd %APPDATA%\Microsoft\VisualStudio\9.0
mklink /D ReflectedSchemas ..\..\..\..\Local\Microsoft\VisualStudio\9.0\ReflectedSchemas
mklink /D ReflectedTypeLibs ..\..\..\..\Local\Microsoft\VisualStudio\9.0\ReflectedTypeLibs

如果您对这些文件的需求/问题与我的不同,您可以将它们链接到不同的文件夹,甚至在不同的分区上。 (您可以使用 /J 开关代替 /D,在这种情况下,这可能并不重要,但它确实有助于了解 不同类型链接之间的差异。)

These files caused problems for me because I was using Windows' Roaming Profiles feature, so I symlinked (created symbolic links for) them to the Local AppData folder:

cd %APPDATA%\Microsoft\VisualStudio\9.0
mklink /D ReflectedSchemas ..\..\..\..\Local\Microsoft\VisualStudio\9.0\ReflectedSchemas
mklink /D ReflectedTypeLibs ..\..\..\..\Local\Microsoft\VisualStudio\9.0\ReflectedTypeLibs

If your needs/problems regarding these files differ from mine, you can link them to a different folder, even on a different partition. (You can use the /J switch instead of /D, and in this case, it probably won't matter, but it does help to know the differences between the different types of links.)

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