public static string GetFileName (
string path
)
Public Function GetFileName(ByVal path) As String
Dim ruta, nombre As String
ruta = IO.Path.GetDirectoryName(path)
nombre = path.ToString.Replace(ruta, "")
Return nombre.Replace("\", "")
End Function