Réponse acceptée !
Autant pour moi je pensais être sur le forum Access
Bref j'ai trouvé la solution, je vous la fait partager :
Public Function GetDBPath() As String
Dim strFullPath As String
Dim I As Integer
strFullPath = CurrentDb().Name
For I = Len(strFullPath) To 1 Step -1
If Mid(strFullPath, I, 1) = "\" Then
GetDBPath = Left(strFullPath, I)
Exit For
End If
Next
End Function