C# 中有三种方法可获取当前路径: environment.currentdirectory、directory.getcurrentdirectory 和 assembly.getex
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#怎么获取当前路径的详细内容,更多请关注编程网其它相关文章!
--结束END--
本文标题: c#怎么获取当前路径
本文链接: https://lsjlt.com/news/616905.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0