views:

164

answers:

4

We are moving from Microsoft Visual Studio 6.0 to Microsoft Development Environment 2003.

In Visual Studio 6.0, the location of the file will be displayed if you go to the workspace, go to the FileView tab, right click on any file and select Properties. The full path of the file is displayed under File name.

However, in 2003, the file path is not displayed if I right click on a file and select Properties.

Is there any way I can view the path of the file from the workspace at all? Thank you.

+1  A: 

In VS 2008 (and I suppose VS2003), 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 kinda on your own there...

DaveN59
Thank you. I hope that our company upgrades to VS 2008 soon!
Andy
A: 

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.

Andy
A: 

If focus is in a code editing window should should be able to do File, Advanced Save Options (or use the shortcut Ctrl+f, v). Here you should see the full path of the file which can be highlighted and copied.

Dave Tapley
Unfortunately, advanced save options does not show the path of the file either. It only has 2 sections: Encoding and Line Endings.I am using MSDN version 7.1.6030.
Andy
+1  A: 

I realize that this is an older thread, but since the question was never answered properly and maybe this can help someone else, here is the correct answer:

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.

ed_
This works. Thank you very much for the tip.
Andy