I have slight problem with my script. It does everything I need, except at the end of script it needs to move files into created directory -move ($file,"$kat/$folder_name/")-
It gives:
Cannot move "file_to_be_moved" No such file or directory
But the file and needed directory is there.
#!/usr/bin/perl
use warnings;
use strict;
use POSIX qw(strftime);
use File::Copy;
my $output_tag = strftime(".%Y%m%d%H%M", localtime);
my $failid='/home/rdd/script/konf.aa';
my $kpv = strftime(".%Y%m%d", localtime);
my $kat='/home/rdd/archive/rwa'.$kpv;
my (@files, $file, $folder_name);
if (open(FAILIDcnt, $failid)) {
while(my $input = <FAILIDcnt>) {
chomp($input);
my $output = $input;
$output =~ s/\.txt//;
$output .= $output_tag;
open(IF, '/home/rdd/'.$input) or next;
open(OF,'> /var/www/html/rwa_test/input/'.$output)
+ or die "Can't open $output: $!";
open(OF,'> /home/rdd/archive/copy/'.$output)
or die "Can't open $output: $!";
while(my $line = <IF>) {
last if $line =~ /^-{19}/;
$line =~ s/,/./g;
$line =~ s/\t/;/g;
print OF "$line";
}
close(OF);
close(IF);
system ("gzip /home/rdd/archive/copy/* ");
if (!-e $kat) {
mkdir $kat;
} else {
if (!-d $kat) {
die "$kat already exists and is not a folder";
}
}
opendir(DIR, "/home/rdd/archive/copy/")
or die "Can't Open Current Directory: $!";
@files = grep ~ m/^S.\w{2}/, readdir(DIR);
close DIR;
foreach $file(@files){
if($file =~ m/^S.(\w{2})/){
$folder_name = $1;
mkdir ("$kat/$folder_name");
move ($file,"$kat/$folder_name/")
or warn "Cannot move $file $!\n";
}
}
}
close (FAILIDcnt);
}
Br
Tann
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|