اکسل

همه چیز درباره اکسل

اکسل

همه چیز درباره اکسل

از کدهای زیر استفاده نمائید

    FolderPath = "C:\Users\Ron\test"
    If Right(FolderPath, 1) <> "\" Then
        FolderPath = FolderPath & "\"
    End If
    
    If Dir(FolderPath, vbDirectory) <> vbNullString Then
        MsgBox "Folder exist"
    Else
        MsgBox "Folder doesn't exist"
    End If


  • علیرضا باقری