Thread unterverzeichnis anlegen (39 answers)
Opened by Noisebreath at 2006-10-06 19:37

renee
 2006-10-09 15:19
#70593 #70593
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Du solltest besser mit CPAN:File::Spec arbeiten und was soll das '+' nach dem Semikolon?

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/perl

use strict;
use warnings;
use File::Spec;

my $path = File::Spec->catdir('C:','Temp');
mkdir($path);
my $file = File::Spec->catfile($path,'index.html');

open( my $fh,'>',$file) or die $!;
#...
close $fh;
\n\n

<!--EDIT|renee|1160392781-->
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 unterverzeichnis anlegen