通过 ASP.Net 在没有写权限的情况下写入文件
我使用 .Net Framework 4.0 创建了一个 ASP.Net 应用程序。我需要将 xml 文件保存在同一服务器上的任何位置(如果文件尚不存在)并希望始终访问。但我不想设置任何文件夹的写权限。
是否可以在不指定写入权限的情况下将文件写入网络服务帐户的任何位置?
网络服务帐户是否具有对任何位置的默认写入权限?
谢谢, 吉滕德拉·比亚尼
I have created an ASP.Net application using .Net framework 4.0. I need to save an xml file on any location on same server (if file not already exists) and want to access then after always. But I dont want to set write permission to any folder.
Is it possible to write a file to any location for Network service account without specifying write permission?
Does Network service account have default write permission to any location?
Thanks,
Jitendra Biyani
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该始终能够写入
%TEMP%
。 (调用Path.GetTempPath()
)但是,如果可以避免的话,就不应该将文件写入磁盘。
你想做什么?
You should always be able to write to
%TEMP%
. (CallPath.GetTempPath()
)However, you should not be writing files to disk if you can avoid it.
What are you trying to do?
通常,如果我需要执行类似的操作,我会在域用户帐户下运行应用程序,并仅为该特定用户授予输出文件夹的权限。
Typically if I ever need to do something like this I run an application under a domain user account and grant permissions to the output folder just for that particular user.