本文總結了.NET(包括ASP.NET/WinForm等)取得目前路徑的各種方法,具有一定的參考價值,下面跟著小編一起來看下吧
以下匯總了. NET(包括ASP.NET/WinForm等)取得目前路徑的各種方法
//取得目前行程的完整路徑,包含檔名(進程名)。
string str = this.GetType().Assembly.Location;
result: X:\xxx\xxx\xxx.exe (.exe檔案所在的目錄+.exe檔名)
# //取得新的Process 元件並將其與目前活動的進程關聯的主模組的完整路徑,包含檔案名稱(進程名稱)。
string str = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName;
result: X:\xxx\xxx\xxx.exe (.exe檔案所在的目錄+.exe檔名)
//取得和設定目前目錄(即該程序從中啟動的目錄)的完全限定路徑。
string str = System.Environment.CurrentDirectory;
result: X:\xxx\xxx (.exe檔案所在的目錄)
//取得目前Thread 的目前應用程式領域的基底目錄,它由程序集衝突解決程序用來探測程序集。
string str = System.AppDomain.CurrentDomain.BaseDirectory;
result: X:\xxx\xxx\ (.exe檔案所在的目錄+"\")
//取得與設定包含該應用程式的目錄的名稱。
string str = System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase;
result: X:\xxx\xxx\ (.exe檔案所在的目錄+"\")
#//取得啟動了應用程式的可執行檔的路徑,不包括可執行檔的名稱。
string str = System.Windows.Forms.Application.StartupPath;
result: X:\xxx\xxx (.exe檔案所在的目錄)
//取得啟動了應用程式的可執行檔的路徑,包括可執行檔的名稱。
string str = System.Windows.Forms.Application.ExecutablePath;
result: X:\xxx\xxx\xxx.exe (.exe檔案所在的目錄+.exe檔名)
# //取得應用程式的目前工作目錄(不可靠)。
string str = System.IO.Directory.GetCurrentDirectory();
result: X:\xxx\xxx (.exe檔案所在的目錄)
#//取得目前行程的完整路徑,包含檔名(進程名)。
string str = this.GetType().Assembly.Location;
result: X:\xxx\xxx\xxx.exe (.exe檔所在的目錄+.exe檔名)
# //取得新的Process 元件並將其與目前活動的進程關聯的主模組的完整路徑,包含檔案名稱(進程名稱)。
string str = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName;
result: X:\xxx\xxx\xxx.exe (.exe檔案所在的目錄+.exe檔名)
//取得和設定目前目錄(即該程序從中啟動的目錄)的完全限定路徑。
string str = System.Environment.CurrentDirectory;
result: X:\xxx\xxx (.exe檔案所在的目錄)
//取得目前Thread 的目前應用程式網域的基底目錄,它由程序集衝突解決程序用來探測程序集。
string str = System.AppDomain.CurrentDomain.BaseDirectory;
result: X:\xxx\xxx\ (.exe檔案所在的目錄+"\")
//取得與設定包含該應用程式的目錄的名稱。
string str = System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase;
result: X:\xxx\xxx\ (.exe檔案所在的目錄+"\")
//取得啟動了應用程式的可執行檔的路徑,不包括可執行檔的名稱。
string str = System.Windows.Forms.Application.StartupPath;
result: X:\xxx\xxx (.exe檔案所在的目錄)
//取得啟動了應用程式的可執行檔的路徑,包括可執行檔的名稱。
string str = System.Windows.Forms.Application.ExecutablePath;
result: X:\xxx\xxx\xxx.exe (.exe檔所在的目錄+.exe檔名)
# //取得應用程式的目前工作目錄(不可靠)。
string str = System.IO.Directory.GetCurrentDirectory();
result: X:\xxx\xxx (.exe檔案所在的目錄)
.NET中三種取得目前路徑的程式碼
//Web程式設計
HttpContext.Current.Server.MapPath("FileName")
System.Web.HttpContext.Current.Request.Path
##//Windows程式設計
System.Environment.CurrentDirectory
//Mobile程式設計
Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase);
以上是總結.NET如何取得目前路徑的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!