File Path

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a hidden table that stores the file path of linked files?
Thanks,
Gene
 
No, it is in the Connect property of the TableDefs Method of the CurrentbDB
object for each table:
CurrentDB.TableDefs("MyTableName").Connect
will return the path. For example:

?currentdb.TableDefs("cisattributetable").Connect
;DATABASE=\\rsltx1-bm01\busmgmt\dev ciscms\ciscmsdata.mdb
 
It's in the Database field of MSysObjects - but the information is also
in the Connect property of the TableDef.
 
Thankyou Klatuu, it was a useful suggestion for me (some years later ...)
Bye
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top