As for the multiple files...The DirList() UDF works well. Here's a rough example of how to use it.

 Code:
$files = DirList("\\server\share\folder",2)
For Each $file in $files
  ;;;  Do what you need here
Next