Saber si existe un fichero
Artículo por Club Developers · 11 mayo 2006
2074 vistas
Vamos a usar la clase System.IO.File y su método Exists
vbnet
If System.IO.File.Exists("c:\miFichero.txt") Then ' el fichero existe Else ' el fichero NO existe End If