Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re^5: chmod in perl

by Anonymous Monk
on Mar 11, 2011 at 09:19 UTC ( [id://892628]=note: print w/replies, xml ) Need Help??


in reply to Re^4: chmod in perl
in thread chmod in perl

The problem with the below code is if the file doesnot exist,you will get an error "No such file or directory at perl.pl line 135

my $filename = q{deletefiles.txt}; chmod 0777, $filename or die $!; open my $OUTPUT, q{+>}, $filename or die $!;

Replies are listed 'Best First'.
Re^6: chmod in perl
by ikegami (Patriarch) on Mar 11, 2011 at 18:37 UTC

    Either ignore that error,

    my $filename = q{deletefiles.txt}; chmod 0777, $filename or $!{ENOENT} or die $!; open my $OUTPUT, q{+>}, $filename or die $!;

    Or change the permissions after creating the file.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (6)
As of 2024-04-19 08:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found