System.IO.Path.GetPathRoot 方法

方法描述

获取指定路径的根目录信息。

语法定义(C# System.IO.Path.GetPathRoot 方法 的用法)

public static string GetPathRoot(
	string path
)

参数/返回值

参数值/返回值 参数类型/返回类型 参数描述/返回描述
path System-String 从其获取根目录信息的路径。
返回值 System.String path 的根目录,例如“C:\”;如果 path 为 null,则为 null;如果 path 不包含根目录信息,则为空字符串。

提示和注释

此方法不验证路径或文件名是否存在。

由该方法返回的字符串的可能模式如下所示:

空字符串(path 指定了当前驱动器或卷上的相对路径)。

“/”(path 指定了当前驱动器上的绝对路径)。

“X:”(指定驱动器上的相对路径的 path,其中 X 表示驱动器号或卷号)。

“X:/”(指定给定驱动器上的绝对路径的 path)。

"\\ComputerName\SharedFolder"(UNC 路径)。

.NET Framework 不支持通过由设备名称构成的路径(如“\\)直接访问物理磁盘。 \PHYSICALDRIVE0 ".

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

System.IO.Path.GetPathRoot 方法例子

下面的代码示例演示 GetPathRoot 方法的用法。

string path = @"\mydir\";
string fileName = "myfile.ext";
string fullPath = @"C:\mydir\myfile.ext";
string pathRoot;

pathRoot = Path.GetPathRoot(path);
Console.WriteLine("GetPathRoot('{0}') returns '{1}'", 
    path, pathRoot);

pathRoot = Path.GetPathRoot(fileName);
Console.WriteLine("GetPathRoot('{0}') returns '{1}'", 
    fileName, pathRoot);

pathRoot = Path.GetPathRoot(fullPath);
Console.WriteLine("GetPathRoot('{0}') returns '{1}'", 
    fullPath, pathRoot);

// This code produces output similar to the following:
//
// GetPathRoot('\mydir\') returns '\'
// GetPathRoot('myfile.ext') returns ''
// GetPathRoot('C:\mydir\myfile.ext') returns 'C:\'

异常

异常 异常描述
ArgumentException
  • path 包含 GetInvalidPathChars 中已定义的一个或多个无效字符。
  • String.Empty 被传递到 path。

命名空间

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 系统要求。