📜  获取当前目录 c# \ - C# (1)

📅  最后修改于: 2023-12-03 15:27:49.864000             🧑  作者: Mango

获取当前目录 C#

在 C# 中获取当前目录是很常见的操作。在本文中,我们将深入了解如何获取当前工作目录以及如何在 C# 中使用它。

获取当前目录

在 C# 中,我们可以使用 System.IO.Directory 类来获取当前目录。要获取当前目录,我们可以使用以下代码:

string currentDirectory = Directory.GetCurrentDirectory();

使用上述代码,我们可以获取当前应用程序的工作目录。

注意:

  • Directory.GetCurrentDirectory()方法将返回当前进程的工作目录。
  • 当前工作目录表示应用程序在启动时所在的目录。
示例

让我们看看一个获取当前目录的示例。在下面的代码中,我们通过 GetCurrentDirectory() 方法获取当前目录,并打印到控制台中:

using System;
using System.IO;

namespace GetCurrentDirectoryExample
{
    class Program
    {
        static void Main(string[] args)
        {
            string currentDirectory = Directory.GetCurrentDirectory();
            Console.WriteLine("当前目录为: " + currentDirectory);
        }
    }
}

在运行上述示例后,您应该能够看到当前应用程序的工作目录输出到控制台中。

总结

获取当前目录在 C# 中是一项非常常见的任务。在本篇文章中,我们介绍了如何使用 Directory.GetCurrentDirectory() 方法获取当前目录,并展示了一个简单的示例。