On Windows, for example I have a file named "report_v1.csv". In the "schema.ini", there is definition for file "report.csv". I don't want to make a copy from "report_v1.csv" and rename it as "report.csv" because it may cost some space. So I try to make a shortcut and rename it to "report.csv".
But when I use ADODB to read data through the shortcut, it prompts error.
Dim conn As New ADODB.Connection
Dim path as String
path = "<some path>"
conn.Open "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" & path & ";Extended Properties=""text;HDR=YES;FMT=Delimited;CharacterSet=65001"";"
So is it possible to read data from a file through its shortcut?