e.localfile是本地路径,如 d:\abc.pdf
判断是不是pdf结尾即可,如
If e.localfile.endswith(".pdf") Then
msgbox("OK")
End If