in reply to Re: Problem with system ()
in thread Problem with system ()

This has a problem with backslashes:
unlink glob("C:\temp\*.audit");
Should be one of these:
unlink glob("C:\\temp\\*.audit"); unlink glob('C:\temp\*.audit'); unlink glob("C:/temp/*.audit");