unknown
2008-11-26 19:35:32 UTC
Hi Folks,
The following snippet will let me enumerate files...
var fs = new ActiveXObject("Scripting.FileSystemObject");
var f = new Enumerator(fs.GetFolder(d).files);
for ( ; !f.atEnd(); f.moveNext())
{
:
}
How do I assert the order I want the files? Alphabetical by Name, Date of
Creation, Date of Last Access, you get the idea...
Thanks,
Chris.
The following snippet will let me enumerate files...
var fs = new ActiveXObject("Scripting.FileSystemObject");
var f = new Enumerator(fs.GetFolder(d).files);
for ( ; !f.atEnd(); f.moveNext())
{
:
}
How do I assert the order I want the files? Alphabetical by Name, Date of
Creation, Date of Last Access, you get the idea...
Thanks,
Chris.