C#程序获取当前目录的完整路径
给定一个目录,现在我们的任务是找到给定目录或当前目录的路径。因此,对于这个任务,我们使用 Directory 类的 GetCurrentDirectory() 方法。此方法将返回当前目录的完整路径。此方法给出的结果不会以反斜杠 (\) 结尾。
句法:
public static string GetCurrentDirectory();
返回:它将返回一个字符串,表示当前目录的路径。
异常:它会抛出以下异常:
- UnauthorizedAccessException:当调用者没有所需的权限时发生此异常。
- NotSupportedException:当操作系统为 Windows CE 时发生此异常。它没有当前目录的功能。
例子:
C#
// C# program to find the path of
// the current directory
using System;
using System.IO;
class GFG{
static void Main()
{
// Finding the complete path of the current directory
// Using GetCurrentDirectory() method
Console.WriteLine("Current directory path: " +
Directory.GetCurrentDirectory());
}
}
输出:
Current directory path: C:\Users\Sravan\ConsoleApplication12