“Файл VBA существует” Ответ

VBA проверяет, существует ли файл

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

Excel VBA существование файла

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

Файл 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

Ответы похожие на “Файл VBA существует”

Вопросы похожие на “Файл VBA существует”

Больше похожих ответов на “Файл VBA существует” по VBA

Смотреть популярные ответы по языку

Смотреть другие языки программирования