c# 创建或修改文件/目录权限:使用带有 mono 和 apache2 的 asp.net 添加组读取权限
如何在 Mono 和 apache2 下使用 asp.net 更改/设置文件或目录的权限?
我有一个 aspx 页面,需要检查目录是否存在,如果不存在,则必须创建它,但设置了组读取权限。尝试使用DirectorySecurity
,但它抛出PlatformNotSupportedException
。
Apache 使用 www-data 用户,创建的所有文件/文件夹都归该用户所有,目录权限如下 drwx------
。
问题是如何将它们修改为drwxr-----
?
How can I change/set permissions of a file or directory using asp.net under mono and apache2?
I have an aspx page that needs to check if a directory exists, if not, it must be created, but with group read permissions set. Tried with DirectorySecurity
, but it throws PlatformNotSupportedException
.
Apache is using www-data user and all files/folders created are owned by this user, the directory permissions look like this drwx------
.
The question is how they can be modified to drwxr-----
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Syscall.chmod 来自Mono.Unix.Native
use Syscall.chmod from Mono.Unix.Native