上传时服务器上的文件夹权限?
我想在服务器上的 Asp.net 应用程序中上传文件,但我必须授予它 R/W 访问权限,以便我或任何人都可以在其中上传文件。有什么方法可以在 Web.config 中编写一些代码或配置行来解决此权限问题吗?
I want to upload files in my Asp.net application on server but I have to grant it R/W access so that I or anyone can upload files in it. Is there any way that I write some code or configuration lines in Web.config which solve this permission problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须为运行应用程序的帐户设置文件夹的权限。这是操作系统级别的,因此在 Web.config 中对此无能为力。不过,请注意仅在一个文件夹上设置权限,因为您可以通过应用程序有效地将其打开到互联网。
You have to set the permissions on the folder for the account under which your application is running. This is an operating system level, and hence nothing can be done about it in Web.config. Be careful to only set the permissions on the one folder though, as your effectively opening it up to the internet through your application.