增加目錄訪問許可權

2021-10-09 04:43:36 字數 1094 閱讀 1040

給當前建立使用者設定許可權:

/*accesscontrolsections:指定要儲存或載入的安全描述符部分*/

using system.security.accesscontrol;

using system.security.cryptography;

using system.security.principal;

var path="";//需要設定訪問許可權的目錄

var ds = new directorysecurity(path,accesscontrolsections.owner);

var sid = new securityidentifier(wellknownsidtype.creatorownersid, null);

var ace = new filesystemaccessrule(sid,

filesystemrights.fullcontrol,

accesscontroltype.allow);

ds.addaccessrule(ace);

給某給使用者設定許可權**自文件):

/*呼叫*//*  

需要新增以下命名空間:

using system.io;

using system.security.accesscontrol;

*/

directory.createdirectory(spath);

addpathpower(spath, "aspnet", "fullcontrol");

/*封裝函式*/

public void addpathpower(string pathname, string username, string power)

//取得訪問控制列表

directorysecurity dirsecurity = dirinfo.getaccesscontrol();

switch (power)

dirinfo.setaccesscontrol(dirsecurity);

}

Apache HTTP 目錄訪問許可權配置

alias zfjy files e zfjy files e zfjy files options indexes includes followsymlinks allowoverride none order deny,allow allow from all 修改conf 資料夾下的 檔案,...

nginx 設定目錄訪問許可權

可以使用下面這個python指令碼生成認證檔案 chmod 777 htpasswd.py htpasswd.py c b filename username password其中htpasswd是生成的檔名,username 是使用者名稱,password 是對應的密碼 修改nginx的conf ...

Apache目錄訪問許可權配置詳解

給指定的資料夾配置對應的訪問許可權是apache配置中的基礎應用,也是apache使用者的必備技能之一。在apache配置檔案中,給指定目錄設定基本的訪問許可權,主要是靠allow deny order三個指令的配合使用來實現的。1.allow指令 allow指令的作用與其英文單詞的含義一致,用於設...