可以請教一下,今天早上在執行VBA讀取CSV檔時,會發生無法開啟的情形(程式碼

紅色的部分),到昨天為止都可以執行,想請問是office版本的關係嗎,執行的程式碼部分如下,希望大大幫忙一下,感謝。
Sub 下載當月最高最低股價2_CSV()
Dim F As Boolean
Dim month1, year1
Dim rs As Object
Dim stockid As String
year1 = "2021"
Set rs = CreateObject("ADODB.Recordset")
strcon = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" & "E:\123\每年營收\" & year1 & "\;" _
& "Extended Properties=""text;HDR=Yes;FMT=Delimited"";"
s = "E:\123\每年營收\2021\202101.csv"
F = CreateObject("Scripting.FileSystemObject").FileExists(s)
If F = True Then
strSQL = "SELECT * FROM 202101.csv WHERE 公司 LIKE '%" & "6176" & "%'"
End If
rs.Open strSQL, strcon, 3, 3
Sheets("歷年營收").row(1.1) = rs("上月比較")
Set rs = Nothing '釋放物件變數
Set WebSht1 = Nothing
Set WebSht2 = Nothing
































































































