我正在通过以下方式读取 Excel 文件:
string path = @"C:\Users\myUserName\inputfile.xlsx";
Excel.Application app = new Application();
Excel.Workbook workbook = app.Workbooks.Open(path, 0, true, 5, "", "", true, Excel.XlPlatform.xlWindows, "\t", false, false, 0, true, 1, 0);
我想知道是否有任何方法可以提供相对路径而不是硬编码的绝对路径。我的想法是将 inputfile.xlsx 放在同一目录中并执行类似...
string path = @"inputfile.xlsx";
但是,它给出了“COMException unhandled..”,“inputfile.xlsx not found”