Saber si existe un fichero
Artículo por Club Developers · 09 mayo 2006
2111 vistas
Vamos a usar la clase System.IO.File y su método Exists
csharp
if(System.IO.File.Exists("c:\mifichero.txt")) // el fichero existe else // el fichero NO existe