por lo que entendi, el quiere solo sacar el nombre del path, no el path entero...
para hacer eso hay muchisimas formas, desde apis que ya hacen eso hasta funciones comunes, aca te dejo algunas:
Private Declare Sub PathStripPath Lib "shlwapi.dll" Alias "PathStripPathA" (ByVal pszPath As String)
Public Function StripPath(ByVal sPath As String) As String
Call PathStripPath(sPath)
StripPath = sPath
End Function
otra forma:
Function getFileName(ByVal path As String) As String
getFileName = Mid$(path, InStrRev(path, "\") + 1)
End Function
otra forma.
Public Function GetFileName(ByRef vPath As String) As String
GetFileName = Right$(vPath, Len(vPath) - InStrRev(vPath, "\"))
End Function
saludos.