MSDN 2003 - 如何显示文件的完整路径
我们将从 Microsoft Visual Studio 6.0 迁移到 Microsoft Visual Studio .NET 2003。
在 Visual Studio 6.0 中,如果您转到工作区,转到“文件视图”选项卡,右键单击任何文件并选择“属性”,则会显示文件的位置。 文件的完整路径显示在文件名下。
但是,在2003年,如果我右键单击文件并选择“属性”,则不会显示文件路径。
有什么方法可以从工作区查看文件的路径吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
确保属性窗口可见(视图、属性窗口)。 在解决方案资源管理器窗口中选择一个文件,属性窗口将显示完整路径。
或者,如果您打开文件,则当您将鼠标悬停在文档的选项卡上时,完整路径将显示为工具提示。
Make sure the properties window is visible (View, Properties Window). Select a file in the Solution Explorer window, the properties window will show the full path.
Or, if you open the file then the full path is displayed as a tooltip when you mouseover the document's tab.
在Visual Studio 2008中(我想Visual Studio 2003),完整路径方便地显示在“完整路径”下的“属性”部分 - 右侧单击“解决方案资源管理器”窗格中的文件名,然后选择“属性”。
我不知道 MSDN 2003 是什么,所以你只能靠自己了......
In Visual Studio 2008 (and I suppose Visual Studio 2003), the full path is conveniently displayed in the Properties section under "Full Path" - right click the file name in the Solution Explorer pane, then select Properties.
I have no clue what MSDN 2003 is, so you're kind of on your own there...
看来唯一的方法是打开有问题的文件,然后执行“文件”->“ 另存为。 然后该路径将显示在 Windows 资源管理器样式的窗口中。
不是很直观,但这是我能找到的唯一方法。
It seems the only way is to open the file in question, then do File -> Save As. The path will then be displayed in an Windows Explorer style window.
Not very intuitive, but it is the only way I can find.
如果焦点位于代码编辑窗口中,应该能够执行
文件
、高级保存选项
(或使用快捷键Ctrl+f、v
)。 在这里您应该看到可以突出显示和复制的文件的完整路径。If focus is in a code editing window should should be able to do
File
,Advanced Save Options
(or use the shortcutCtrl+f, v
). Here you should see the full path of the file which can be highlighted and copied.