This is working great! Now- I have a folder name of "(current month)"

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


my $files line reads:
 Code:
$files = DirList("\\server\share\(current month)",2)


I get an error that there is a missing ')'.
What is the escape character so I can use
 Code:
"\\server\share\(current month)"

in the string? I have tried using '\' so that it shows as
 Code:
"\\server\share\\(current month\)"

But it did not work.