Thread Kopieren in ein Verzeichnis (22 answers)
Opened by joey at 2003-09-24 17:24

KKO
 2004-01-04 22:05
#55648 #55648
User since
2003-11-05
124 Artikel
BenutzerIn

user image
um nochmal auf joey zurückzukommen
Code: (dl )
1
2
3
4
5
6
7
8
#!/usr/bin/perl -w
use strict;
use warnings;
use File::Copy;
my $dir = "f:/";
my $file = "all.txt";# aus dem aktuellen verzeichnis
my $CopyFile="$dir$file";
copy($file, $CopyFile) or die "Kopieren fehlgeschlagen: $!";
Gruß
KKO

View full thread Kopieren in ein Verzeichnis