Windows 脚本宿主  

FullName 属性(WshUrlShortcut 对象)

返回快捷方式对象目标的完全限定路径。

object.FullName 

参数

object
WshUrlShortcut 对象。

说明

字符串。只读。

FullName 属性是一个表示快捷方式目标的完全限定路径的只读字符串。

示例

下面的代码用来检索 URL 快捷方式的完全限定路径。

[VBScript]
set oUrlLink = WshShell.CreateShortcut(strDesktop & "\Microsoft Web Site.url")
oUrlLink.TargetPath = "http://www.microsoft.com"
oUrlLink.Save
WScript.Echo oUrlLink.FullName
[JScript]
var oUrlLink = WshShell.CreateShortcut(strDesktop + "\\Microsoft Web Site.url");
oUrlLink.TargetPath = "http://www.microsoft.com";
oUrlLink.Save();
WScript.Echo (oUrlLink.FullName);

请参阅

Path 属性 | WScript 对象 | WshShortcut 对象 | WshUrlShortcut 对象