My.Computer.FileSystem.GetParentPath 方法

更新:2007 年 11 月

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

' Usage
Dim value As String = My.Computer.FileSystem.GetParentPath(path)
' Declaration
Public Function GetParentPath( _
   ByVal path As String _
) As String

参数

  • path
    String。要检查的路径。必选。

返回值

String.

异常

以下情况可能会导致引发异常:

备注

这是字符串运算;不会检查文件系统。

示例

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

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

要求

命名空间:Microsoft.VisualBasic.MyServices

类:FileSystemProxy(提供对 FileSystem 的访问)

**程序集:**Visual Basic 运行库(位于 Microsoft.VisualBasic.dll 中)

按项目类型列出的可用性

项目类型

可用

Windows 应用程序

类库

控制台应用程序

Windows 控件库

Web 控件库

Windows 服务

网站

权限

以下权限可能是必需的:

权限

说明

FileIOPermission

控制访问文件和文件夹的能力。关联的枚举:Unrestricted

有关更多信息,请参见代码访问安全性请求权限

请参见

任务

如何:在 Visual Basic 中分析文件路径

参考

My.Computer.FileSystem 对象

GetParentPath

其他资源

文件、目录和驱动器属性 (Visual Basic)