.NET中三种获取当前路径的代码

 http://blog.csdn.net/jhstudio/archive/2007/11/04/1865882.aspx

Web编程
HttpContext.Current.Server.MapPath("FileName")

Windows编程
System.Environment.CurrentDirectory

Mobile编程
Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase); 

你可能感兴趣的:(编程,windows,.net)