System.IO.Directory.GetCurrentDirectory 方法

方法描述

获取应用程序的当前工作目录。

语法定义(C# System.IO.Directory.GetCurrentDirectory 方法 的用法)

public static string GetCurrentDirectory()

参数/返回值

参数值/返回值 参数类型/返回类型 参数描述/返回描述
返回值 System.String 包含当前工作目录的路径的字符串,并不以反斜杠 (\) 结尾。

提示和注释

当前目录不同于原始目录,后者是从其开始进程的目录。

有关通用 I/O 任务的列表,请参见通用 I/O 任务。

System.IO.Directory.GetCurrentDirectory 方法例子

下面的代码示例演示 GetCurrentDirectory 方法。

using System;
using System.IO;

class Test 
{
    public static void Main() 
    {
        try 
        {
            // Get the current directory.
            string path = Directory.GetCurrentDirectory();
            string target = @"c:\temp";
            Console.WriteLine("The current directory is {0}", path);
            if (!Directory.Exists(target)) 
            {
                Directory.CreateDirectory(target);
            }

            // Change the current directory.
            Environment.CurrentDirectory = (target);
            if (path.Equals(Directory.GetCurrentDirectory())) 
            {
                Console.WriteLine("You are in the temp directory.");
            } 
            else 
            {
                Console.WriteLine("You are not in the temp directory.");
            }
        } 
        catch (Exception e) 
        {
            Console.WriteLine("The process failed: {0}", e.ToString());
        }
    }
}

异常

异常 异常描述
UnauthorizedAccessException 调用方没有所要求的权限。
NotSupportedException 操作系统为 Windows CE,该系统不具有当前目录功能。 此方法在 .NET Compact Framework 中可用,但是当前并不支持。

命名空间

namespace: System.IO

程序集: mscorlib(在 mscorlib.dll 中)

版本信息

.NET Framework 受以下版本支持:4、3.5、3.0、2.0、1.1、1.0 .NET Framework Client Profile 受以下版本支持:4、3.5 SP1

适用平台

Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。