“Existe el archivo VBA” Código de respuesta

VBA verifique si existe el archivo

Public Function IsFile(s)
    IsFile = CreateObject("Scripting.FileSystemObject").FileExists(s)
End Function
Excel Hero

Excel VBA Existencia de un archivo

' Existence of a file 
If Dir("C:\myDirectory\myFile", vbDirectory) = vbNullString Then
    MsgBox "Doesn't exists"
Else
    MsgBox "Exists"
End If
VasteMonde

Existe el archivo VBA

Sub test()

thesentence = InputBox("Type the filename with full extension", "Raw Data File")

Range("A1").Value = thesentence

If Dir(thesentence) <> "" Then
    MsgBox "File exists."
Else
    MsgBox "File doesn't exist."
End If

End Sub
Robert Dorrigan

Respuestas similares a “Existe el archivo VBA”

Preguntas similares a “Existe el archivo VBA”

Más respuestas relacionadas con “Existe el archivo VBA” en VBA

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código