DocumentBase.Path 属性

获取文档的磁盘路径或 Web 路径。

命名空间:  Microsoft.Office.Tools.Word
程序集:  Microsoft.Office.Tools.Word.v4.0.Utilities(在 Microsoft.Office.Tools.Word.v4.0.Utilities.dll 中)

语法

声明
Public ReadOnly Property Path As String
public string Path { get; }

属性值

类型:System.String
文档的磁盘路径或 Web 路径。

备注

该路径不包括尾随字符,例如,“C:\MSOffice”或“http://MyServer”。 使用 PathSeparator 属性添加用来分隔文件夹和驱动器号的字符。 使用 Name 属性返回不带路径的文件名,使用 FullName 属性返回文件名和路径。

备注

可以使用 PathSeparator 属性来生成 Web 地址,即使它们包含正斜杠 (/) 而 PathSeparator 属性默认为反斜杠 (\) 时也是如此。

示例

下面的代码示例显示一条消息,该消息显示了文档的路径。 若要使用此示例,请从文档级项目内的 ThisDocument 类中运行此示例。

Private Sub DocumentPath()
    MessageBox.Show(Me.Path.ToString())
End Sub 
private void DocumentPath()
{
    MessageBox.Show(this.Path.ToString());
}

.NET Framework 安全性

请参见

参考

DocumentBase 类

Microsoft.Office.Tools.Word 命名空间