/[cvs]/rabit/r3/Module_FileFunctions.bas
ViewVC logotype

Contents of /rabit/r3/Module_FileFunctions.bas

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1.1.1 - (show annotations) (vendor branch)
Tue Mar 12 21:29:08 2002 UTC (22 years, 1 month ago) by cvsrabit
Branch: NFO, MAIN
CVS Tags: v034a, HEAD
Changes since 1.1: +0 -0 lines
Initial project import

1 Attribute VB_Name = "Module_FileFunctions"
2 Option Explicit
3 '
4
5 Public Function GetFilenameOfFullPath(ByVal FullPath As String) As String
6
7 Dim LastSlashPos As Integer
8 Dim SlashPos As Integer
9
10 SlashPos = InStr(1, FullPath, "\")
11
12 While SlashPos > 0
13
14 LastSlashPos = SlashPos
15 SlashPos = InStr(SlashPos + 1, FullPath, "\")
16
17 Wend
18
19 GetFilenameOfFullPath = Right(FullPath, Len(FullPath) - LastSlashPos)
20
21 End Function
22
23 Public Function GetPathOfFullPath(ByVal FullPath As String) As String
24
25 Dim LastSlashPos As Integer
26 Dim SlashPos As Integer
27
28 SlashPos = InStr(1, FullPath, "\")
29
30 While SlashPos > 0
31
32 LastSlashPos = SlashPos
33 SlashPos = InStr(SlashPos + 1, FullPath, "\")
34
35 Wend
36
37 GetPathOfFullPath = Left(FullPath, LastSlashPos)
38
39 End Function
40

MailToCvsAdmin">MailToCvsAdmin
ViewVC Help
Powered by ViewVC 1.1.26 RSS 2.0 feed