问题描述
怎样获取某个站点下的虚拟目录地址?..要知道某个站点下面有多少个虚拟目录,获取虚拟目录的物理地址,怎样实现?
解决方案
解决方案二:
C:WINDOWSsystem32inetsrvMetaBase.xml
解决方案三:
UsingSystem.DirectoryServices.DirectoryEntryTherearesomeexampleforyou:http://www.eggheadcafe.com/articles/20040112.asphttp://www.wwwcoder.com/main/parentid/460/site/5920/68/default.aspxhttp://dotnetjunkies.com/WebLog/ramdash/articles/21777.aspx
解决方案四:
stringserverMapPath=HttpContext.Current.Server.MapPath(".");//获得网站虚拟目录的物理地址publicstring[]DirectoriesWatcher(stringpath)//根据传入的物理地址path检索该目录下所有文件夹并存入string数组{string[]str=newstring[1000];str=Directory.GetDirectories(path);returnstr;}
时间: 2024-09-21 17:47:31