RE: File::Find on Win32 -- Directory Permissions Denied

2002-01-30 Thread RArul
symbol of "not enough access permissions?" -- Rex -Original Message- From: McCollum, Frank [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 30, 2002 4:52 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: File::Find on Win32 -- Directory Permissions Denied I was using serv

RE: File::Find on Win32 -- Directory Permissions Denied

2002-01-30 Thread McCollum, Frank
riginal Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 30, 2002 4:46 PM To: McCollum, Frank; [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: File::Find on Win32 -- Directory Permissions Denied The script is not intended to run on an internet(server) env

RE: File::Find on Win32 -- Directory Permissions Denied

2002-01-30 Thread RArul
stems to see, if I have "access" (at least READ) to a particular directory protected by NTFS. Thanks, Rex > -Original Message- > From: McCollum, Frank [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, January 30, 2002 4:41 PM > To: [EMAIL PROTECTED]; [EMAIL PROTECTED] &

RE: File::Find on Win32 -- Directory Permissions Denied

2002-01-30 Thread McCollum, Frank
I do not see that problem as long as 'I' (read user) have permission. You can always use the CACLS Windows system command to change permissions, but there is usually a good reason not to. Is the perl script running on a server? Does the server have permission to be in the folder? -Original

RE: File::Find on Win32 -- Directory Permissions Denied

2002-01-30 Thread Nikola Janceski
I don't think the -r -x -w or any of those will work for NTFS (they don't set permissions like that). To capture the error (probably STDERR) use: open(OLDERR, ">&STDERR") or die $!; # backup filehandle open(STDERR, ">standard_errors") or die $!; # errors go here now ## do your stuff here open(