Método de atEnd
Retorna um valor booleano indicando se o enumerador está no final da coleção.
function atEnd() : Boolean
Comentários
O atEnd método retorna true se o item atual é a última na coleção, a coleção está vazia ou o item atual é indefinido. Caso contrário, retornará false.
Exemplo
No código a seguir, o atEnd método é usado para determinar se o final de uma lista de unidades foi atingido:
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);
}