How to Return the path of a given full path to a file
Posted on January 4, 2009
1 2 3 4 | 'File/Folder Handling - How to Return the path of a given full path to a file Private Function returnPathOfFile(ByVal strFile As String) As String returnPathOfFile = Left(strFile, InStrRev(strFile, "\")) End Function |