I'm trying to get a list of file names from a folder into an array and use them as links in my script. I'm new to VBScript and I can't seem to be able to get at the file names... any suggestions? here's the code

Dim FSO
Set FSO = Server.CreateOb ject("Scripting .FileSystemObje ct")
Dim Folder
dir = Server.MapPath( "./Slides")
Set Folder = FSO.GetFolder(d ir)
Dim File
For Each...