System.IO.Path.IsPathRooted 方法

方法描述

获取指示指定的路径字符串是否包含根的值。

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

public static bool IsPathRooted(
	string path
)

参数/返回值

参数值/返回值 参数类型/返回类型 参数描述/返回描述
path System-String 要测试的路径。
返回值 System.Boolean true (如果 path 包含根);否则为 false。

提示和注释

如果第一个字符是目录分隔符,例如“\”,或者如果路径是以驱动器号和冒号 (:)开始,则 IsPathRooted 返回 true。 例如,它返回 path 字符串的 true,诸如“\\MyDir\\MyFile.txt”、“C:\\MyDir", or "C:MyDir”。 它为 path 字符串(例如“MyDir”)返回 false。

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

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

System.IO.Path.IsPathRooted 方法例子

下面的代码示例演示 IsPathRooted 方法可以如何用于测试三个字符串。

string fileName = @"C:\mydir\myfile.ext";
string UncPath = @"\\myPc\mydir\myfile";
string relativePath = @"mydir\sudir\";
bool result;

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

result = Path.IsPathRooted(UncPath);
Console.WriteLine("IsPathRooted('{0}') returns {1}", 
    UncPath, result);

result = Path.IsPathRooted(relativePath);
Console.WriteLine("IsPathRooted('{0}') returns {1}", 
    relativePath, result);

// This code produces output similar to the following:
//
// IsPathRooted('C:\mydir\myfile.ext') returns True
// IsPathRooted('\\myPc\mydir\myfile') returns True
// IsPathRooted('mydir\sudir\') returns False

异常

异常 异常描述
ArgumentException path 包含 GetInvalidPathChars 中已定义的一个或多个无效字符。

命名空间

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