in reply to Re: 'Permission Denied' error from File::Find
in thread 'Permission Denied' error from File::Find

Roger, that should work fine because witandhumor is using apostrophes (single ticks). These are all the same thing on Win32:

$directory = 'c:\my_directory'; $directory = 'c:/my_directory'; $directory = "c:\\my_directory"; $directory = "c:/my_directory";

Basically, if you're going to need to expand any variables, you need to use quotes (double ticks), but for literals it's easier to use apostrophes.