Visual Studio 2010:使用命令行打开文件会重置窗口布局
以下命令工作正常。它打开 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我想现在明白了。
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.