作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在浏览 EPPlus 的示例项目,终于到达了我感兴趣的部分。我想导入一个 .txt 文件的内容。示例 9 展示了如何执行此操作,但我收到一个我似乎无法修复的错误。
错误信息:
The type or namespace name "GetFileInfo" doesn't exist in the namespace 'OfficeOpenXml.Utils'(are you missing an assembly reference?)
代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using OfficeOpenXml;
using System.IO;
using OfficeOpenXml.Table;
using OfficeOpenXml.Drawing.Chart;
using System.Globalization
...
FileInfo newFile = Utils.GetFileInfo(@"\sample9.xlsx");
有人遇到过这个问题吗?提前致谢!
编辑:如果我直接打开示例文件,我不会收到任何错误,只有当我尝试在我自己的项目中这样做时。
最佳答案
试试这个:
var file = new System.IO.FileInfo(fullpathandfilename);
关于c# - Utils.GetFileInfo 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51336919/
我正在浏览 EPPlus 的示例项目,终于到达了我感兴趣的部分。我想导入一个 .txt 文件的内容。示例 9 展示了如何执行此操作,但我收到一个我似乎无法修复的错误。 错误信息: The type o
我是一名优秀的程序员,十分优秀!