Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 C# 创建 Excel 文件后,我试图打开该文件,并得到以下异常:
“excel无法打开文件,因为文件格式或文件扩展名无效。验证文件没有损坏,文件扩展名与文件格式匹配。”
有什么建议么?
没有任何代码并通过阅读错误,我怀疑您在保存文件时在路径中指定了错误的扩展名,这是一个常见错误:
string path = "C:\\excelfile.xls"; //or xlsx as said @JMK