Saber el nombre de un fichero conociendo toda su ruta
Artículo por Club Developers · 09 mayo 2006
2080 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.
csharp
string fileName = "C:\\unFihero.txt"; string name = System.IO.Path.GetFileName(fileName); Console.WriteLine(name);