in reply to Re: 'Permission Denied' error from File::Find
in thread 'Permission Denied' error from File::Find
$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.
|
---|