Thread File::Path -->mkpath (7 answers)
Opened by Andreas at 2006-01-09 16:55

renee
 2006-01-09 23:54
#61594 #61594
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
[quote=opi,09.01.2006, 19:14]was spricht gegen

Code: (dl )
print "$!\n" unless mkdir "$dir";


?[/quote]
mkdir != mkpath

Mit mkdir kann man nur eine Ebene im Verzeichnisbaum hinzufuegen, mit mkpath einen ganzen Baum (also mkdir('test'); mkdir('test/hallo'); vs. mkpath('test/hallo');)

Bei mkpath wird $! nicht gesetzt. Normalerweise sieht ein Aufruf von mkpath so aus:

Code: (dl )
1
2
3
eval{mkpath('path')};

die $@ if($@);
\n\n

<!--EDIT|renee|1136844128-->
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread File::Path -->mkpath