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

Re: mkdir permission

by poj (Abbot)
on Jan 08, 2019 at 17:20 UTC ( [id://1228223]=note: print w/replies, xml ) Need Help??


in reply to mkdir permission

Perhaps you need to create the intermediate sub directories first.

#!/usr/binperl use strict; use CGI; use CGI::Carp 'fatalsToBrowser'; # add this only during debugging my $cgi = CGI->new(); my @nombre_archivos = ("NI","RP","RDZ","CRF"); my $archivos = $cgi->param("archivos"); # warning list context ? my $inst = $cgi->param("inst"); my $fecha = $cgi->param("date1"); my ($anio,$mes,$dia)= unpack 'x2 a2 x a2 x a2',$fecha; my $ymd = join '-',$anio,$mes,$dia; my $upload_dir = "/var/www/html/public_html/"; for my $subdir ('rev',$inst,$ymd){ $upload_dir .= $subdir.'/'; unless (-d $upload_dir){ mkdir $upload_dir, 0775 or die "Could not mkdir $upload_dir : $!"; } } my $ind = 1; my $filename = "$upload_dir/$ymd-$nombre_archivos[$ind]"; open UPLOADFILE, '>', $filename or die "Could not open $filename : $!"; # add filename into error + message print UPLOADFILE "Test"; close UPLOADFILE;

Update : Or alternatively use make_path using File::Path

poj

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1228223]
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-16 17:58 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found