ScriptFullName 属性
返回当前运行脚本的完整路径。
object.ScriptFullName
参数
- object
- WScript 对象。
说明
ScriptFullName 属性是一个只读字符串。
示例:
Function getProjectPath()
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFile = objFSO.GetFile(wscript.scriptfullname)
getProjectPath = objFSO.GetParentFolderName(objFile)
Set objFSO = Nothing
Set objFile = Nothing
End Function
|
阅读(680) | 评论(0) | 转发(0) |