FileSystem.GetParentPath(String) 方法

定义

返回所提供的路径的父路径。

public:
 static System::String ^ GetParentPath(System::String ^ path);
public static string GetParentPath (string path);
static member GetParentPath : string -> string
Public Shared Function GetParentPath (path As String) As String

参数

path
String

要检查的路径。

返回

所提供的路径的父路径。

例外

路径是根路径,因此没有父路径。

pathNothing

路径超过了系统定义的最大长度。

路径中的文件名或目录名包含冒号 (:),或格式无效。

示例

此示例获取 的 C:\Backups\Tmp\Test父路径。

Dim strPath = My.Computer.FileSystem.GetParentPath("C:\backups\tmp\test")
MsgBox(strPath)

注解

这是一个字符串操作;不检查文件系统。

适用于