8 Einträge, 1 Seite |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
my $localpath = "c:/apps/Sync/"; my $localpathfiles; open(Source, '<', $localpath."localpath.txt") or die "Konnte Quelldatei nicht oeffen $!"; while(<Source>) { $localpathfiles = $_; } close(Source); chomp ($localpathfiles); $localpathfiles =~ s/\s+$//g; $localpathfiles =~ s/\\/\//g; if ($localpathfiles ne~ /\/$/) { $localpathfiles = $localpathfiles."\/"; }
1 2 3 4 5 6 7 8
#!/usr/bin/perl use Tie::File; my $file = $localpath."localpath.txt"; tie my @lines, 'Tie::File', $file or die $!; my $localfiles = $lines[-1]; untie @lines;
StefanJ+2007-11-12 16:43:56--@Renee:
Eigentlich steht in meiner .txt-Datei lediglich eine einzige Zeile (der Ordnerpfad).
Gibt es hierfür einen kleineren Code, der genau das macht, was ich von Zeile 3-9 mache ??
8 Einträge, 1 Seite |