“客户不拥有所需的权限”使用 ExcelPackage 时出错
我正在使用 ExcelPackage 通过.net 创建 Excel 工作表。
我正在 codeplex< 获取参考/a> 用于创建 Excel 工作表。
它给了我以下错误:
A required privilege is not held by the client.
在创建 FileInfo 类对象时的行处,
FileInfo newFile = new FileInfo(@"C:\mynewfile.xlsx");
标题为错误“IOException 未由用户代码处理”。
如何解决呢?请帮助....
问候 吉里什
I am using ExcelPackage to create the excel sheet through .net.
I am taking the reference at codeplex for creating excel sheet.
It is giving me following error:
A required privilege is not held by the client.
at the line when creating object of FileInfo class as
FileInfo newFile = new FileInfo(@"C:\mynewfile.xlsx");
with the heading of Error "IOException was unhandled by user code."
How to resolve it ? Please help ....
Regards
Girish
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在生产环境中使用 ExcelPackage 并且没有遇到任何问题。请将文件夹所需的权限授予经过身份验证的用户或进程运行所在的用户帐户(aspnet?)。
I'm using ExcelPackage in production environment and haven't got into any problem. Please give required permissions to on the folder to authenticated users or the user account (aspnet?) under which the process is running.