using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

 
using System.DirectoryServices;
using System.Collections;
using System.Text.RegularExpressions;
using System.IO;
using System.Security.AccessControl;
using System.Data.SqlClient;
using System.Data.Sql;
 
using System.Data;
 
 
 

namespace ClassLibrary
{
    public class IISClass
    {
        #region UserName,Password,HostName的定义
        public static string HostName
        {
            get
            {
                return hostName;
            }
            set
            {
                hostName = value;
            }
        }
        public static string UserName
        {
            get
            {
                return userName;
            }
            set
            {
                userName = value;
            }
        }
        public static string Password
        {
            get
            {
                return password;
            }
            set
            {
                if (UserName.Length <= 1)
                {
                    throw new ArgumentException("还没有指定好用户名。请先指定用户名");
                }
                password = value;
            }
        }
        public static void RemoteConfig(string hostName, string userName, string password)
        {
            HostName = hostName;
            UserName = userName;
            Password = password;
        }
        private static string hostName = "localhost";
        private static string userName = "qf";
        private static string password = "qinfei";
        #endregion
        #region 根据路径构造Entry的方法
        /// <summary>
        /// 根据是否有用户名来判断是否是远程服务器。
        /// 然后再构造出不同的DirectoryEntry出来
        /// </summary>
        /// <param name="entPath">DirectoryEntry的路径</param>
        /// <returns>返回的是DirectoryEntry实例</returns>

public static DirectoryEntry GetDirectoryEntry(string entPath)

{

DirectoryEntry ent;

if (UserName == null)

{

ent = new DirectoryEntry(entPath);

}

else

{

ent = new DirectoryEntry(entPath, HostName + "\\" + UserName, Password, AuthenticationTypes.Secure);

//ent = new DirectoryEntry(entPath, UserName, Password, AuthenticationTypes.Secure);

}

return ent;

}

#endregion

#region 添加,删除网站的方法

public static void CreateNewWebSite(string hostIP, string portNum, string descOfWebSite, string commentOfWebSite, string webPath)

{

if (!EnsureNewSiteEnavaible(hostIP + portNum + descOfWebSite))

{

throw new ArgumentNullException("已经有了这样的网站了。" + Environment.NewLine + hostIP + portNum + descOfWebSite);

}

string entPath = String.Format("IIS://{0}/w3svc", HostName);

DirectoryEntry rootEntry = GetDirectoryEntry(entPath);//取得iis路径

string newSiteNum = GetNewWebSiteID(); //取得新网站ID

DirectoryEntry newSiteEntry = rootEntry.Children.Add(newSiteNum, "IIsWebServer"); //增加站点

newSiteEntry.CommitChanges();//保存对区域的更改(这里对站点的更改)

newSiteEntry.Properties["ServerBindings"].Add(":"+portNum+":");  //(hostIP + portNum + descOfWebSite);

newSiteEntry.Properties["ServerComment"].Value= commentOfWebSite ;

newSiteEntry.Properties["AccessRead"].Add(true); //增加 读取权限

//  newSiteEntry.Properties["AppFriendlyName"].Add("DefaultAppPool");

//  System.DirectoryServices.DirectoryEntry appPoolRoot = new System.DirectoryServices.DirectoryEntry(@"IIS://" + HostName + "/W3SVC/AppPools");

//   newSiteEntry.Properties["ApplicationProtection"].Value="vsdapMedium";

newSiteEntry.Properties["DefaultDoc"][0] = "Default.aspx";

//默认文档

newSiteEntry.Properties["AuthNTLM"][0] = true;  // 指定集成 Windows 身份验证

newSiteEntry.CommitChanges();

DirectoryEntry vdEntry = newSiteEntry.Children.Add("root", "IIsWebVirtualDir");

vdEntry.CommitChanges();

vdEntry.Properties["Path"].Value = webPath;

#region 增加站点的应用程序设置

vdEntry.Invoke("AppCreate", true);

vdEntry.Properties["AppFriendlyName"].Value = commentOfWebSite;// 友好的显示名称

vdEntry.Properties["AppIsolated"].Value = 2; // 值 0 表示应用程序在进程内运行,值 1 表示进程外,值 2 表示进程池

vdEntry.Properties["AccessScript"][0] = true;

// 可执行脚本。执行权限下拉菜单中

vdEntry.Properties["AuthNTLM"][0] = true;  // 指定集成 Windows 身份验证

#endregion

vdEntry.CommitChanges();

#region 增加虚拟目录aspnet_client

try

{

DirectoryEntry _RootFolder = new DirectoryEntry("IIS://" + HostName + "/W3SVC/" + newSiteNum + "/Root");

DirectoryEntry _VirDir = _RootFolder.Children.Add("aspnet_client", "IIsWebVirtualDir");

_VirDir.Properties["Path"].Value = @"C:\Inetpub\wwwroot\aspnet_client";  //webPath;  //设置路径

_VirDir.Invoke("AppCreate", true);

//设置名称

_VirDir.Properties["AppFriendlyName"].Value = "aspnet_client";

_VirDir.Properties["AppIsolated"].Value = 2;

_VirDir.Properties["AccessScript"][0] = true;         // 可执行脚本。执行权限下拉菜单中

_VirDir.CommitChanges();//更改目录

_RootFolder.CommitChanges();      //更改根目录

}

catch

{

//MessageBox.Show("共享目录已存在,不进行共享操作!");

}

#endregion

}

/// <summary>

/// 删除一个网站。根据网站名称删除。

/// </summary>

/// <param name="siteName">网站名称</param>

public static void DeleteWebSiteByName(string siteName)

{

string siteNum = GetWebSiteNum(siteName);

string siteEntPath = String.Format("IIS://{0}/w3svc/{1}", HostName, siteNum);

DirectoryEntry siteEntry = GetDirectoryEntry(siteEntPath);

string rootPath = String.Format("IIS://{0}/w3svc", HostName);

DirectoryEntry rootEntry = GetDirectoryEntry(rootPath);

rootEntry.Children.Remove(siteEntry);

rootEntry.CommitChanges();        }

#endregion

#region 确认网站是否相同

/// <summary>

/// 确定一个新的网站与现有的网站没有相同的。

/// 这样防止将非法的数据存放到IIS里面去

/// </summary>

/// <param name="bindStr">网站邦定信息</param>

/// <returns>真为可以创建,假为不可以创建</returns>

public static bool EnsureNewSiteEnavaible(string bindStr)

{

string entPath = String.Format("IIS://{0}/w3svc", HostName);

DirectoryEntry ent = GetDirectoryEntry(entPath);

foreach (DirectoryEntry child in ent.Children)

{

if (child.SchemaClassName == "IIsWebServer")

{

if (child.Properties["ServerBindings"].Value != null)

{

if (child.Properties["ServerBindings"].Value.ToString() == bindStr)

{

return false;

}

}

}

}

return true;

}

#endregion

#region 获取新网站id的方法

/// <summary>

/// 获取网站系统里面可以使用的最小的ID。

/// 这是因为每个网站都需要有一个唯一的编号,而且这个编号越小越好。

/// 这里面的算法经过了测试是没有问题的。

/// </summary>

/// <returns>最小的id</returns>

public static string GetNewWebSiteID()

{

ArrayList list = new ArrayList();

string tmpStr;

string entPath = String.Format("IIS://{0}/w3svc", HostName);

DirectoryEntry ent = GetDirectoryEntry(entPath);

foreach (DirectoryEntry child in ent.Children)

{

if (child.SchemaClassName == "IIsWebServer")

{

tmpStr = child.Name.ToString();

list.Add(Convert.ToInt32(tmpStr));

}

}

list.Sort();

int i = 1;            foreach (int j in list)            {                if (i == j)                {                    i++;                }            }            return i.ToString();        }        #endregion                #region 设置目录访问权限    //// <summary>    /// 为创建的临时文件分配权限    /// </summary>    /// <param name="pathname"></param>    /// <param name="username"></param>        /// <param name="power">  </param>    /// <remarks> 用法: addpathPower("指定目录路径", "Everyone", "FullControl"); //Everyone表示用户名  //FullControl为权限类型</remarks>    public string 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();        try        {            switch (power)            {                case "FullControl":                    dirsecurity.AddAccessRule(new FileSystemAccessRule(username, FileSystemRights.FullControl, InheritanceFlags.ObjectInherit | InheritanceFlags.ContainerInherit, PropagationFlags.None, AccessControlType.Allow));                    dirinfo.SetAccessControl(dirsecurity);                    break;                case "ReadOnly":                    dirsecurity.AddAccessRule(new FileSystemAccessRule(username, FileSystemRights.Read, InheritanceFlags.ObjectInherit | InheritanceFlags.ContainerInherit, PropagationFlags.None, AccessControlType.Allow));                    dirinfo.SetAccessControl(dirsecurity);                    break;                case "Write":                    dirsecurity.AddAccessRule(new FileSystemAccessRule(username, FileSystemRights.Write, InheritanceFlags.ObjectInherit | InheritanceFlags.ContainerInherit, PropagationFlags.None, AccessControlType.Allow));                    dirinfo.SetAccessControl(dirsecurity);                    break;                case "Modify":                    dirsecurity.AddAccessRule(new FileSystemAccessRule(username, FileSystemRights.Modify, InheritanceFlags.ObjectInherit | InheritanceFlags.ContainerInherit, PropagationFlags.None, AccessControlType.Allow));                    dirinfo.SetAccessControl(dirsecurity);                    break;                case "ReadAndExecute": //读取和运行                    dirsecurity.AddAccessRule(new FileSystemAccessRule(username, FileSystemRights.ReadAndExecute, InheritanceFlags.ObjectInherit | InheritanceFlags.ContainerInherit, PropagationFlags.None, AccessControlType.Allow));                    dirinfo.SetAccessControl(dirsecurity);                    break;            }            dirsecurity.AddAccessRule(new FileSystemAccessRule("Everyone",FileSystemRights.ReadAndExecute,AccessControlType.Allow));            dirinfo.SetAccessControl(dirsecurity);                        }        catch (Exception e)        {            return e.Message.ToString();        }        return "true";    }    #endregion           }}

C#修改文件夹权限的更多相关文章

  1. 转发:entos7修改文件夹权限和用户名用户组

    Linux系统下经常遇到文件或者文件夹的权限问题,或者是因为文件夹所属的用户问题而没有访问的权限.根据我自己遇到的情况,对这类问题做一个小结.在命令行使用命令“ll”或者“ls -a”,可以查看文件或 ...

  2. centos6.5下修改文件夹权限和用户名用户组

    0.说明 Linux系统下经常遇到文件或者文件夹的权限问题,或者是因为文件夹所属的用户问题而没有访问的权限.根据我自己遇到的情况,对这类问题做一个小结. 在命令行使用命令"ll"或 ...

  3. Centos7修改文件夹权限和用户名用户组

    Linux系统下经常遇到文件或者文件夹的权限问题,或者是因为文件夹所属的用户问题而没有访问的权限.根据我自己遇到的情况,对这类问题做一个小结.在命令行使用命令“ll”或者“ls -a”,可以查看文件或 ...

  4. 【转】ubuntu下修改文件夹权限

    常用方法如下: sudo chmod 600 ××× (只有所有者有读和写的权限)sudo chmod 644 ××× (所有者有读和写的权限,组用户只有读的权限)sudo chmod 700 ××× ...

  5. ubuntu下修改文件夹权限

    常用方法如下: sudo chmod 600 ××× (只有所有者有读和写的权限)sudo chmod 644 ××× (所有者有读和写的权限,组用户只有读的权限)sudo chmod 700 ××× ...

  6. linux仅修改文件夹权限;linux 分别批量修改文件和文件夹权限

    比如我想把/var/www/html下的文件全部改成664,文件夹改成775,怎么做呢 方法一: 先把所有文件及文件夹改成664,然后把所有文件夹改成775 root@iZ25bq9kj7yZ:/ c ...

  7. linux仅修改文件夹权限 分别批量修改文件和文件夹权限

    比如我想把/var/www/html下的文件全部改成664,文件夹改成775,怎么做呢 方法一: 先把所有文件及文件夹改成664,然后把所有文件夹改成775 chmod -R 664 ./ find ...

  8. linux,修改文件夹权限

    chmod -R 777 dist/ chown windseek:staff dist/   改变dist的权限到staff组里的windseek用户下   alias ll=`ls -al`   ...

  9. MAC /usr/local 文件夹权限问题

    修改文件夹权限 sudo chown -R $(whoami) /usr/local/ 如果失败提示Operation not permitted 或其他权限不足,则需要关闭Rootless Root ...

随机推荐

  1. Android HandlerThread 的使用及其Demo

    今天我们一起来学习下一个Android中比较简单的类HandlerThread,虽然它的初始化有点小麻烦. 介绍 首先我们来看看为什么我们要使用HandlerThread?在我们的应用程序当中为了实现 ...

  2. webdriver如何定位多层iframe中元素

    在 web 应用中经常会出现 iframe 嵌套的应用,假设页面上有 A.B 两个 iframe,其中 B 在 A 内,那么定位 B 中的内容则需要先到 A,然后再到 B. iframe 中实际上是嵌 ...

  3. Polymer.js

    Polymer 1.0 教程 安装 bower install --save Polymer/polymer

  4. python数据结构与算法——图的广度优先和深度优先的算法

    根据维基百科的伪代码实现: 广度优先BFS: 使用队列,集合 标记初始结点已被发现,放入队列 每次循环从队列弹出一个结点 将该节点的所有相连结点放入队列,并标记已被发现 通过队列,将迷宫路口所有的门打 ...

  5. 部分用到的python代码

    replace file extensions # change .htm files to .html for file in *.htm ; do mv $file `echo $file | s ...

  6. UVA 572

    这是一道纯正的深度优先搜索题目. 题目要求在有多少个不同的块,而不同块的定义则是,一个块中的任意一点和l另一个块中的任意一点不会相连,而相连的定义则是 在横向.纵向和对角线上相连. #include& ...

  7. 第一篇T语言实例开发(版本5.3),带错误检测的加减乘除运算器

    带错误检测的加减乘除运算器 表达式 TC综合开发工具里的表达式大体分为:计算表达式.条件表达式 计算表达式: 它一般是用在赋值过程中,或者是和条件表达式混合使用这样的表达式里只有数字运算符(如:+.- ...

  8. hmtl 中的定位

    1.绝对定位: position:sbsolute: 作用:将元素从文档流中拖出来,然后使用 left,right,top,bottom属性相对于其最接近的一个具有定位属性的父包含块进行绝对定位. 若 ...

  9. 在线程中用 OracleBulkCopy 导至 CPU 百分百

    抓取到的数据, 要批量写数据到 ORACLE , 一开始是用的EF, 处理速度很慢. 主要表现在验证数据上(db.GetValidationErrors), 每分钟才能写 1000条不到. 换成 En ...

  10. MSSQL FOR MXL PATH 运用(转载)

    FOR XML PATH 有的人可能知道有的人可能不知道,其实它就是将查询结果集以XML形式展现,有了它我们可以简化我们的查询语句实现一些以前可能需要借助函数活存储过程来完成的工作.那么以一个实例为主 ...