Why is it that if you send the function FileExists with a path that has quotes around it, for example see below, it tells you that the file/path doesn't exist?
$drive = """C:""" ;$drive = "C:" Doesn't work
ConsoleWrite('@@ Debug(' & @ScriptLineNumber & ') : $drive = ' & $drive & @CRLF & '>Error code: ' & @error & @CRLF) ;### Debug Console
If FileExists($drive) Then
MsgBox(4096, $drive & " Dir ", "Exists")
Else
MsgBox(4096, $drive & " Dir ", "Does NOT