1. 程式人生 > >C#創建文件夾並設置權限

C#創建文件夾並設置權限

創建 bre all serve style block attr wid 設置

原文地址:https://www.cnblogs.com/top5/archive/2010/04/12/1710141.html

/*
技術分享圖片需要添加以下命名空間:
技術分享圖片using System.IO;
技術分享圖片using System.Security.AccessControl;
技術分享圖片*/
技術分享圖片
技術分享圖片string sPath = Server.MapPath(文件夾名稱字符串);
技術分享圖片Directory.CreateDirectory(sPath);
技術分享圖片addpathPower(sPath, "ASPNET", "FullControl");
技術分享圖片
技術分享圖片//////////////////////////////////////////////////
技術分享圖片
技術分享圖片public void addpathPower(string pathname, string username, string power)

技術分享圖片{
技術分享圖片
技術分享圖片 DirectoryInfo dirinfo = new DirectoryInfo(pathname);
技術分享圖片
技術分享圖片 if ((dirinfo.Attributes & FileAttributes.ReadOnly) != 0)
技術分享圖片 {
技術分享圖片 dirinfo.Attributes = FileAttributes.Normal;
技術分享圖片 }
技術分享圖片
技術分享圖片 //取得訪問控制列表
技術分享圖片 DirectorySecurity dirsecurity = dirinfo.GetAccessControl();
技術分享圖片
技術分享圖片 switch (power)
技術分享圖片 {
技術分享圖片 case "FullControl":
技術分享圖片 dirsecurity.AddAccessRule(new FileSystemAccessRule(username, FileSystemRights.FullControl, InheritanceFlags.ContainerInherit, PropagationFlags.InheritOnly, AccessControlType.Allow));
技術分享圖片 break;
技術分享圖片 case "ReadOnly":
技術分享圖片 dirsecurity.AddAccessRule(new FileSystemAccessRule(username, FileSystemRights.Read, AccessControlType.Allow));
技術分享圖片 break;
技術分享圖片 case "Write":
技術分享圖片 dirsecurity.AddAccessRule(new FileSystemAccessRule(username, FileSystemRights.Write, AccessControlType.Allow));
技術分享圖片 break;
技術分享圖片 case "Modify":
技術分享圖片 dirsecurity.AddAccessRule(new FileSystemAccessRule(username, FileSystemRights.Modify, AccessControlType.Allow));
技術分享圖片 break;
技術分享圖片 }
技術分享圖片 dirinfo.SetAccessControl(dirsecurity);
技術分享圖片}

C#創建文件夾並設置權限