Version: 2.0
This method is used to return the name of the last file or folder of the supplied path.
If the supplied path string doesn't end with the
specified file or folder the GetFileName method will return an
empty string.
Note that this method doesn't check the existance or the validity of
the supplied path.
<%
dim filesys, a
Set filesys = CreateObject("Scripting.FileSystemObject")
filesys.CreateTextFile "c:\DevGuru\website\VBScript.txt", True
a = filesys.GetFileName("c:\DevGuru\website\VBScript.txt")
Response.Write (a)
%>
"VBScript.txt"