item 方法 (Visual Studio - JScript)
返回集合中的当前项。
function item() : Number
备注
item 方法返回 Enumerator 对象中的当前项。 如果集合为空或如果当前项未被定义,它将返回 undefined。
示例
在下面的代码中,使用了 item 方法返回 Drives 集合中的一个成员。
function ShowDrives()
{
var s = "";
var bytesPerGB = 1024 * 1024 * 1024;
var fso = new ActiveXObject("Scripting.FileSystemObject");
var e = new Enumerator(fso.Drives);
e.moveFirst();
while (e.atEnd() == false)
{
var drv = e.item();
s += drv.Path + " - ";
if (drv.IsReady)
{
var freeGB = drv.FreeSpace / bytesPerGB;
var totalGB = drv.TotalSize / bytesPerGB;
s += freeGB.toFixed(3) + " GB free of ";
s += totalGB.toFixed(3) + " GB";
}
else
{
s += "Not Ready";
}
s += "\n";
e.moveNext();
}
return(s);
}