C#如何在Windows中操作IIS设置FTP服务器

什么是FTP

FTP(File Transfer Protocol)是TCP/IP网络上两台计算机传送文件的协议,使得主机间可以共享文件.可以将 Internet 信息服务 (IIS) 配置为作为 FTP 服务器来运行。 这样,其他计算机便可以连接到服务器并将文件复制到服务器或者从服务器复制文件。 例如,如果您在自己的计算机上承载网站,并且希望允许远程用户连接到您的计算机并将他们的文件复制到服务器,则可以将 IIS 配置为充当 FTP 服务器。

主要实现方式

下面主要讲解一下,在Window的IIS中创建FTP的Site。

1、创建站点

 public int createFtpSite(string ftpname,string path){int errorCode = ErrorCode.Succeed;if (ftpname == "" && path == ""){try{ServerManager iisManager = new ServerManager();Configuration cfg = iisManager.GetApplicationHostConfiguration();/*---- 停止21端口 ----*/try{/*---- sites ----*/foreach (var ftpsite in iisManager.Sites){/** 站点描述*/string sitename = ftpsite.Name;/** 站点绑定域名和端口*/foreach (Binding binding in ftpsite.Bindings){try{string currentServerBindings = binding.GetAttributeValue("BindingInformation").ToString();string port = currentServerBindings.Split(":".ToArray())[1];if (port == "21"){try{//stop siteftpsite.Stop();}catch{//doing nothing}break;}}catch{//doing nothing}}}//提交更改iisManager.CommitChanges();}catch{//do nothing}/** 创建FTP*/if (!System.IO.Directory.Exists(System.Configuration.ConfigurationManager.AppSettings.Get("defaultftpath")))//创建站点路径{System.IO.Directory.CreateDirectory(System.Configuration.ConfigurationManager.AppSettings.Get("defaultftpath"));}Site site = iisManager.Sites.Add(System.Configuration.ConfigurationManager.AppSettings.Get("defaultftp"), "ftp", string.Format("*:{0}:", "21"), System.Configuration.ConfigurationManager.AppSettings.Get("defaultftpath"));iisManager.CommitChanges();//设置FTP SSL权限SetFtpSSL();//设置FTP Everyone权限IISUtil.IISCore.AddSiteUtil addsiteUtil = new AddSiteUtil();try{string config_rootpath = System.Configuration.ConfigurationManager.AppSettings.Get("defaultftpath");//string rootpath = path.Substring(0, path.IndexOf(ftpname) - 1) + "\\ftproot";if (!System.IO.Directory.Exists(config_rootpath)){System.IO.Directory.CreateDirectory(config_rootpath);}addsiteUtil.icaclsSet("Everyone", System.Configuration.ConfigurationManager.AppSettings.Get("defaultftpath"));/*---- hide ----*/System.IO.File.SetAttributes(config_rootpath, System.IO.FileAttributes.Hidden);}catch{}}catch{errorCode = ErrorCode.ftpSiteFail;}}else{if (!getFtpState(ftpname))//判断ftp用户是否存在{/*---- FTP状态检查 ----*/FtpStateInit();try{using (ServerManager iisManager = new ServerManager()){Site site = iisManager.Sites.FirstOrDefault(o => ((string)o["name"]).Contains(System.Configuration.ConfigurationManager.AppSettings.Get("defaultftp")));var vird = site.Applications[0].VirtualDirectories["/" + ftpname];if (vird == null) { site.Applications[0].VirtualDirectories.Add("/" + ftpname, path); }else { errorCode = ErrorCode.ftpExists; }iisManager.CommitChanges();//添加FTP访问权限SetFtpAccess(ftpname);}}catch{errorCode = ErrorCode.ftpSiteFail;}}else{errorCode = ErrorCode.ftpExists;}}return errorCode;}

2、站点列表

/// <summary>/// iis6获取所有ftp站点信息/// </summary>/// <param name="newsitename"></param>/// <returns></returns>public static List<string> iGetFtpInfos(){List<string> ftpinfos = new List<string>();try{string ftproot = System.Configuration.ConfigurationManager.AppSettings.Get("defaultftp");string ftpname = "";//用户名string ftppass = "";//密码string ftppath = "";//物理路径string iisversion = "";//iis版本string majorversion = IISCore.IISInfoUtil.SGetIISMajorVersion();if (majorversion == ""){iisversion = "未知";}else{iisversion = majorversion.ToString();}/** 创建FTP 子站点*/var siteEntry = new DirectoryEntry("IIS://localhost/MSFTPSVC");//IIS6管理对象DirectoryEntry rootentry = new DirectoryEntry("IIS://localhost/W3SVC");//创建IIS管理对象foreach (DirectoryEntry sitechild in siteEntry.Children){if (!sitechild.SchemaClassName.EqualsEx("IIsFtpServer"))    //IIsFtpServer代表FTPcontinue;string yftpname = sitechild.Properties["ServerComment"].Value.ToString();string defaultftpname = System.Configuration.ConfigurationManager.AppSettings.Get("defaultftp");if (yftpname == defaultftpname){try{//获取站点信息var root = sitechild.Children.Find("ROOT", "IIsFtpVirtualDir");DirectoryEntries ftps = root.Children;foreach (DirectoryEntry ftp in ftps){ftpname = ftp.Name;/** 获取密码*/try{/** 循环站点获取站点信息*/foreach (DirectoryEntry child in rootentry.Children){if (child.SchemaClassName == "IIsWebServer" && child.Properties["ServerComment"].Value.ToString() == ftpname){ftppass = child.Properties["AnonymousUserPass"].Value.ToString();/** 获取站点目录*/foreach (DirectoryEntry rootChild in child.Children){string name = rootChild.Name.ToString();if ((rootChild.SchemaClassName == "IIsWebVirtualDir") && (rootChild.Name.ToString().ToLower() == "root")){if (rootChild.Properties["Path"].Value == null){ftppath = "";}else{ftppath = rootChild.Properties["Path"].Value.ToString().Substring(0, rootChild.Properties["Path"].Value.ToString().LastIndexOf("\\"));}}}}}}catch{}/** 获取路径*/if(ftpname != "")ftpinfos.Add(ftproot + "-@-" + ftpname + "-@-" + ftppass + "-@-" + ftppath + "-@-" + iisversion);//添加到站点信息}}catch{}}}}catch{}return ftpinfos;//返回数据}

3、删除站点

  public static bool DeleteQFtp(string ftpname){bool flag = false;try{/** 删除FTP 子站点*/var siteEntry = new DirectoryEntry("IIS://localhost/MSFTPSVC");//IIS6管理对象if (ftpname != ""){foreach (DirectoryEntry sitechild in siteEntry.Children){if (!sitechild.SchemaClassName.EqualsEx("IIsFtpServer"))    //IIsFtpServer代表FTPcontinue;string yftpname = sitechild.Properties["ServerComment"].Value.ToString();if (yftpname.ToLower() == System.Configuration.ConfigurationManager.AppSettings.Get("defaultftp").ToLower()){try{DirectoryEntry root = sitechild.Children.Find("ROOT", "IIsFtpVirtualDir");var ftpchild = root.Children.Find(ftpname, "IIsFtpVirtualDir");if (ftpchild != null){//删除root.Children.Remove(ftpchild);root.CommitChanges();sitechild.CommitChanges();siteEntry.CommitChanges();flag = true;}}catch{flag = false;}}}}}catch{}return flag;}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/303310.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

这是一份编程宝典,请查收!

最近&#xff0c;小编一直在整理有关编程的书籍&#xff0c;有Android、C、Java、PHP、木马、算法等类型的书籍。现在&#xff0c;小编准备将这些资料免费分享给大家&#xff01;Android应用开发入门教程&#xff08;经典版&#xff09;易学CC语言解惑HTML入门教程Java解惑&…

php备份和恢复源码,PHP数据库备份还原类

php代码<?php /*** 数据库备份还原类* author xialeistudio* date 2014-03-17* Class DatabaseTool*/class DatabaseTool{private $handler;private $config array(host > localhost,port > 3306,user > root,password > ,database > test,charset > ut…

2011年Android手机用户购买行为研究报告

http://mobile.51cto.com/hot-292153.htm转载于:https://blog.51cto.com/jueshishenhua/670081

以IP段作为监听地址

在写Socket通讯服务的时候一般需要Listen某个IP地址端口&#xff0c;但这样比较麻烦的就是部署后需要配置相关IP地址信息&#xff1b;虽然可以监听Any所有地址&#xff0c;但这种对于私有的网络服务来说并不安全。为了在发布的时候节省一些配置工作所以才想到以IP段作为监听地址…

支付宝 统一支付 php,支付宝APP支付 统一下单 php服务端 tp5

{$data input(‘post.‘);Loader::import(‘/alipay/aop/AopClient‘,EXTEND_PATH);$aop new \AopClient();$aop->appId config("alipay_app_id");$aop->rsaPrivateKey config(‘alipay_private_key‘);$aop->alipayrsaPublicKey config(‘alipay_publ…

近期资料分享汇总,还不快来看看你漏了哪份没拿?

相信&#xff0c;一直关注着我们的同学们都知道&#xff0c;小思妹分享了好多好多的资料给大家。为了方便新来的同学自取&#xff0c;小思妹又重新整理了一遍&#xff0c;直接点以下标题即可跳转&#xff01;这是我见过的最全的训练数据集&#xff0c;没有之一&#xff01;送你…

WebView 访问 url asset sd 网页

引用&#xff1a;http://www.oschina.net/code/snippet_54100_6227 [代码] [Java]代码 01//打开本包内asset目录下的index.html文件02 03wView.loadUrl(" file:///android_asset/index.html "); 04 05//打开本地sd卡内的index.html文件06 07wView.loadUrl("con…

oracle天数加个随机数,如何给一个表某列加上指定的随机数

如何给一个表某列加上指定的随机数一、原始数据create table #test (name varchar(10),ddate datetime,date1 datetime,date2 datetime)insert into #testselect 张三,2013-09-01,2013-09-01 09:00:00.000,2013-09-01 17:00:00.000 union allselect 张三,2013-09-02,2013-09-0…

MS Learn 宝藏资源库 - 学习经验分享

点击蓝字关注我们作者&#xff1a;刘轶民大家好&#xff0c;我是东北电力大学的一名在校学生&#xff0c;我叫刘轶民&#xff0c;很高兴能以 MS Learn 的受益者的身份&#xff0c;来分享一些经验与看法。作为正在上学的我来讲&#xff0c;很多时候我可能更多的去面临着新技术的…

你必须知道的28个HTML5特征、窍门和技术

Jeffrey Way曾发表过一篇博文《28 HTML5 Features, Tips, and Techniques you Must Know 》讲述了28个HTML5特征、窍门和技术&#xff0c;张鑫旭将本文进行了翻译&#xff0c;现转载于此&#xff0c;全文如下&#xff1a;前端的发展如此之迅猛&#xff0c;一不留神&#xff0c;…

一起读懂传说中的经典:受限玻尔兹曼机

尽管性能没有流行的生成模型好&#xff0c;但受限玻尔兹曼机还是很多读者都希望了解的内容。这不仅是因为深度学习的复兴很大程度上是以它为前锋&#xff0c;同时它那种逐层训练与重构的思想也非常有意思。本文介绍了什么是受限玻尔兹曼机&#xff0c;以及它的基本原理&#xf…

NET问答: 发布 asp.net core 时如何修改 ASPNETCORE_ENVIRONMENT 环境变量?

咨询区 Dario&#xff1a;当我把 asp.net core web 发布到本地文件时&#xff0c;我发现程序读的是 appsettings.Production.json ,也就说明当前的 ASPNETCORE_ENVIRONMENT Production。请问如何动态修改 ASPNETCORE_ENVIRONMENT 的值&#xff0c;这样的话在 调试 和 发布 阶段…

oracle 如何筛选重复,求sql--筛选A字段相同,B字段不同且不重复的记录

测试数据&#xff1a;create table PRICE(ID VARCHAR2(10),PRICE NUMBER,SYSID VARCHAR2(10));insert into price (ID, PRICE, SYSID)values (10, 1000, 1);insert into price (ID, PRICE, SYSID)values (10, 1000, 2);insert into price (ID, PRICE, SYSID)values (20, 200…

注释里的诅咒:哪种语言遭受最多的咒骂?

导读&#xff1a;原文作者Scott Gilbertson在webmonkey.com发表一篇《Cussing in Commits: Which Programming Language Inspires the Most Swearing?》&#xff0c;由外刊IT评论整理翻译《注释里的诅咒&#xff1a;哪种语言遭受最多的咒骂&#xff1f;》。内容如下:任何一个程…

php tp3 操作绑定到类,操作绑定到类 · ThinkPHP3.2.3完全开发手册 · 看云

## 定义ThinkPHP3.2版本提供了把每个操作方法定位到一个类的功能&#xff0c;可以让你的开发工作更细化&#xff0c;可以设置参数**ACTION_BIND_CLASS**&#xff0c;例如&#xff1a;~~~ACTION_BIND_CLASS > True,~~~设置后&#xff0c;我们的控制器定义有所改变&#xff0c…

怎样快速掌握深度学习TensorFlow框架?

TensorFlow是Google基于DistBelief进行研发的第二代人工智能学习系统&#xff0c;其命名来源于本身的运行原理。Tensor&#xff08;张量&#xff09;意味着N维数组&#xff0c;Flow&#xff08;流&#xff09;意味着基于数据流图的计算&#xff0c;TensorFlow实际上就是张量从流…

牛X,.NET6又双叒叕新版本,这是要起飞吗?

.NET6又双叒叕出新版本了&#xff0c;2月17号Preview1、3月11号Preview2、4月8号又Preview3了&#xff0c;密集的版本发布&#xff0c;各种新技术和改进优化&#xff0c;不禁要问一句&#xff0c;.NET6是要起飞吗&#xff1f;下面给大家科普下.NET6将带来的几大核心变化&#x…

外媒:谷歌攻击码由中国作者发布

英国金融时报&#xff08;The Financial Times&#xff09;报导&#xff0c;一名中国的自由安全顾问&#xff0c;撰写了利用IE6浏览器的攻击代码&#xff0c;而后被用来攻击谷歌等美国公司。 根据金融时报的报导&#xff0c;这名身份尚未曝光的程序设计师&#xff0c;将部分攻击…

用python挖一挖知乎上宅男们最喜欢的1000个妹子

在文章开始前&#xff0c;先来一张图给大家热热身。这里是宅男们最喜欢的妹子中排名前200位的头像&#xff08;实际193张图&#xff0c;部分不规则的图已被二胖过滤&#xff09;。排名不分先后哈&#xff01;快来看看有没有你们熟悉的面孔。找到眼熟的人了吗&#xff1f;说不定…

在 .NET 6 Preview 3 ASP.NET Core 更新

.NET 6 Preview 3现在可用了&#xff0c;其中包括对ASP.NET Core的许多重大改进。这是此预览版本中的新增功能&#xff1a;更小的SignalR&#xff0c;Blazor Server和MessagePack scripts启用 Redis 分析会话HTTP/3 endpoint TLS配置初版的 .NET Hot Reload 支持Razor编译器不再…