Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re^4: File reading with hashes

by Bindo (Acolyte)
on Aug 08, 2013 at 10:01 UTC ( [id://1048526]=note: print w/replies, xml ) Need Help??


in reply to Re^3: File reading with hashes
in thread File reading with hashes

Thanks. Yes there are no problems with the file permissions sir. Each and every one of those files have read permission.

Replies are listed 'Best First'.
Re^5: File reading with hashes
by rnewsham (Curate) on Aug 09, 2013 at 07:31 UTC
    there are no problems with the file permissions

    If you are getting a permission denied error I am afraid that there is a problem with permissions, however probably not an obvious one.

    Can you add the following code between the if -e and the open FH2 line and tell us the results.

    my @file_stat = stat "$users{$user}/MY_FILE"; my @dir_stat = stat "$users{$user}"; printf("%d $users{$user} -> 0%o %d %d\n", $>, $dir_sta +t[2] & 07777, $dir_stat[4], $dir_stat[5]); printf("%d $users{$user}/MY_FILE -> 0%o %d %d\n", $>, $file_st +at[2] & 07777, $file_stat[4], $file_stat[5]);

    Update: tidied up code no functionality changed.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1048526]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (4)
As of 2024-04-25 15:40 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found