c# 中有三种方法可获取当前路径: environment.currentdirectory、directory.getcurrentdirectory 和 assembly.getexecutingassembly().location。它们分别返回当前工作目录的绝对路径、当前工作目录的绝对路径和当前应用程序的可执行文件路径。
C# 获取当前路径
获取当前路径在开发中经常会有用到,C#提供了多种方法来实现这一目的。
1. 使用Environment.CurrentDirectory
string path = Environment.CurrentDirectory;
登录后复制
此方法返回当前工作目录的绝对路径。
2. 使用Directory.GetCurrentDirectory
string path = Directory.GetCurrentDirectory();
登录后复制
此方法与Environment.CurrentDirectory相同,返回当前工作目录的绝对路径。
3. 使用Assembly.GetExecutingAssembly().Location
string path = Assembly.GetExecutingAssembly().Location;
登录后复制
此方法返回当前应用程序的可执行文件路径。
示例:
using System; using System.IO; namespace GetCurrentDirectory { class Program { static void Main() { // 使用 Environment.CurrentDirectory string path1 = Environment.CurrentDirectory; // 使用 Directory.GetCurrentDirectory string path2 = Directory.GetCurrentDirectory(); // 使用 Assembly.GetExecutingAssembly().Location string path3 = Assembly.GetExecutingAssembly().Location; Console.WriteLine("Current Directory:"); Console.WriteLine($"\tPath 1: {path1}"); Console.WriteLine($"\tPath 2: {path2}"); Console.WriteLine($"\tPath 3: {path3}"); } } }
登录后复制
以上就是c#怎么获取当前路径的详细内容,更多请关注其它相关文章!
Article Links:https://www.hinyin.com/n/93217.html
Article Source:admin
Article Copyright:除非特别标注,否则均为本站原创文章,转载时请以链接形式注明文章出处。