Saber el nombre de un fichero conociendo toda su ruta
Artículo por Club Developers · 11 May 2006
2123 vistas
Para poder extraer el nombre de un fichero conociendo su path completo tendremos que usar la clase System.IO.Path y su método GetFileName.
vbnet
Dim fileName As String = "C:\toto.tx" Dim name As String = System.IO.Path.GetFileName(fileName) Console.WriteLine(name)