Antes que nada, recuerda importar System.IO
:
- Imports System.IO
Para eliminar el archivo haz lo siguiente:
- Protected Sub aa1Borrar_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles aa1Borrar.Click
- Try
- Dim RutaArch As String
- RutaArch = MapPath(".") & "archivo.doc"
- Dim Archivo As FileInfo = New FileInfo(RutaArch)
- If Archivo.Exists Then
- File.Delete(RutaArch)
- Else
- Throw New FileNotFoundException()
- End If
- Catch excepcion As FileNotFoundException
- aa1Mensaje.Text += excepcion.Message
- Catch excepcion As Exception
- aa1Mensaje.Text += excepcion.Message
- End Try
- End Sub