atEnd 方法
返回一个布尔值,通过该值指示枚举数是否位于集合的末尾。
function atEnd() : Boolean
备注
如果当前项是集合中的最后一个项,或者集合为空,或者当前项未定义,则 atEnd 方法返回 true。 否则,返回 false。
示例
在下面的代码中,使用了 atEnd 方法来确定是否到达了一个驱动器列表的末尾:
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);
}