Visual Studio 2010:使用命令行打开文件会重置窗口布局

发布于 2024-11-06 14:45:16 字数 529 浏览 1 评论 0原文

以下命令工作正常。它打开 Visual Studio 2010 的新实例:

devenv

但如果我指定文件名,Visual Studio 的窗口布局将被重置。

devenv "D:\Temp\test.txt"

有什么想法吗?谢谢。


更新:

此命令有效:

devenv /command "open D:\Temp\test.txt"

但文件路径不能包含空格。以下命令给出错误:“操作无法完成。系统找不到指定的文件”:

devenv /command "open D:\Temp\test 2.txt"

我尝试过:

devenv /command "open 'D:\Temp\test 2.txt'"

但得到了相同的错误。

The following command works fine. It opens a new instance of Visual Studio 2010:

devenv

But if I specify a file name, Visual Studio's window layout will be reset.

devenv "D:\Temp\test.txt"

Any ideas? Thanks.


Update:

This command works:

devenv /command "open D:\Temp\test.txt"

But the file path cannot contain spaces. The following command gives an error: "The operation cannot be completed. The system cannot find the file specified":

devenv /command "open D:\Temp\test 2.txt"

I tried:

devenv /command "open 'D:\Temp\test 2.txt'"

But got the same error.

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

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

发布评论

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

评论(1

甲如呢乙后呢 2024-11-13 14:45:16

好吧,我想现在明白了。

Visual Studio 针对不同的情况使用不同的布局。当从命令行使用指定的文件名打开它时,它使用特殊的布局。

我从未自定义过此布局,因此它看起来像默认布局,让我以为布局已重置。

OK I think understand now.

Visual Studio uses different layouts for different situations. It uses a special layout when it is opened from command line with a specified file name.

I have never custom this layout so it looks like the default one, made me thought the layout was reset.

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