How do I find the directory path of an open document?

  • Thread starter Thread starter DownTownBrown
  • Start date Start date
D

DownTownBrown

Using Word 2007 I opened a recent document. Now this document is opened how
do I determine it's directory path where it is stored?
 
Click on File - Properties - General tab
If the directory path is too long I usually highlight it, right click to
copy it.
Open up Notepad to look at it.

And if you can not see Properties as an option then click on the bottom of
the list where two little down arrows are displayed.
 
DownTownBrown said:
Using Word 2007 I opened a recent document. Now this document is opened
how
do I determine it's directory path where it is stored?

Hover your mouse over the file name in the Recently used Documents list.
You'll see the path in the screen tip. You can also display the Save As
dialog box and "Save In" will reflect the location of the previously saved
document.
--
~~~~~~~~~~~~~~~
Beth Melton
Microsoft Office MVP
https://mvp.support.microsoft.com/profile/Melton
What is a Microsoft MVP? http://mvp.support.microsoft.com/gp/mvpfaqs

Guides for the Office 2007 Interface:
http://office.microsoft.com/en-us/training/HA102295841033.aspx
 
Add the line
ActiveWindow.Caption = ActiveDocument.FullName
to an autoopen macro stored in normal.dotm to display it in the title bar

OR
Run the following macro to display it in a message box

Sub myPath()
MsgBox ActiveDocument.FullName
End Sub

OR
Run the following macro to enter it at the cursor
Sub TypePath()
Selection.TypeText ActiveDocument.FullName
End Sub

OR
Insert a Filename field with a \P switch.

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Back
Top