
Get Filename from path
The following function returns the filename without the extension from the file's full path:
Function FileName(strPath As String) As String Dim strTemp As String strTemp=mid$(strPath,instrrev(strPath,"")+1) FileName=left$(strTemp,instrrev(strTemp,".")-1) End FunctionThe following function returns the filename with the extension from the file's full path:
Function FileName(strPath As String) As String FileName=mid$(strPath,instrrev(strPath,"")+1) End FunctionAnd while we're at it if you wanted to just get the path you could use:
Function FilePath(strPath As String) As String FilePath=left$(strPath,instrrev(strPath,"")) End Function