import flash.filesystem.File; var file1:File = new File(File.applicationDirectory.resolvePath("data/未来生活由您来定义.xml").nativePath); trace(file1.nativePath);//获取未来生活由您来定义.xml的绝对地址 trace(File.applicationDirectory.nativePath);//获取应用程序根目录 var file:File…
如果要得到传统的ASP.Net应用程序中的相对路径或虚拟路径对应的服务器物理路径,只需要使用使用Server.MapPath()方法来取得Asp.Net根目录的物理路径,如下所示: // Classic ASP.NET public class HomeController : Controller { public ActionResult Index() { string physicalWebRootPath = Server.MapPath("~/"); return Cont…
如果要得到传统的ASP.Net应用程序中的相对路径或虚拟路径对应的服务器物理路径,只需要使用使用Server.MapPath()方法来取得Asp.Net根目录的物理路径,如下所示: // Classic ASP.NET public class HomeController : Controller { public ActionResult Index() { string physicalWebRootPath = Server.MapPath("~/"); return Cont…
如果要得到传统的ASP.Net应用程序中的相对路径或虚拟路径对应的服务器物理路径,只需要使用使用Server.MapPath()方法来取得Asp.Net根目录的物理路径,如下所示: // Classic ASP.NET public class HomeController : Controller { public ActionResult Index() { string physicalWebRootPath = Server.MapPath("~/"); return Cont…
今天在Console Application下搞了一个小功能,期间需要获取当前应用程序的根目录,试了很多方式,都不能直接获取到,没有像Server.MapPath()这类的方法来方便地使用. 下面列举出一些获取一般目录的方法: // 获取程序的基目录,结尾包含\ var a = AppDomain.CurrentDomain.BaseDirectory; Console.WriteLine(a); // 获取和设置包括该应用程序的目录的名称,与上一个一样 var b = AppDomain.Cu…