CodeProject.Path Property (Access)
You can use the Path property to determine the location where data is stored for a Microsoft Access project (.adp) or Microsoft Access database. Read-only String.
Syntax
식 .Path
식 A variable that represents a CodeProject object.
Remarks
You can use the Path property to determine the location of information stored through the CurrentProject or CodeProject objects of a project or database.
Example
The following example displays a message indicating the disk location of the current Access project or database.
MsgBox "The current database is located at " & Application.CurrentProject.Path & "."