Tidied
This commit is contained in:
parent
4b241d14f7
commit
c14c180bfe
1 changed files with 47 additions and 40 deletions
|
|
@ -20,19 +20,23 @@ print("Last year: $lastyear\n");
|
|||
|
||||
# Define and create folders
|
||||
my $financial_folder = '/home/tracey/Documents/financial/current_year/';
|
||||
my $financial_archive_folder = '/home/tracey/Documents/financial/1_financial_archives/';
|
||||
my $lastyear_folder = $financial_archive_folder . $lastyear . 'FinancialArchives';
|
||||
my @folders = ( $financial_folder, $financial_archive_folder, $lastyear_folder );
|
||||
my $financial_archive_folder =
|
||||
'/home/tracey/Documents/financial/1_financial_archives/';
|
||||
my $lastyear_folder =
|
||||
$financial_archive_folder . $lastyear . 'FinancialArchives';
|
||||
my @folders =
|
||||
( $financial_folder, $financial_archive_folder, $lastyear_folder );
|
||||
|
||||
print("Copying current directories to archive folder\n");
|
||||
print("From: $financial_folder\n");
|
||||
print("To: $lastyear_folder\n");
|
||||
dircopy( $financial_folder, $lastyear_folder ) or croak "Could not copy directories $!";
|
||||
dircopy( $financial_folder, $lastyear_folder )
|
||||
or croak "Could not copy directories $!";
|
||||
|
||||
# Make sure contents match before we do any Deleting
|
||||
# croak on errors to guard against data losss
|
||||
my $same_result = compare_dirs( $financial_folder, $lastyear_folder );
|
||||
croak "Error: The folders are not the same!" unless ($same_result == 1) ;
|
||||
croak "Error: The folders are not the same!" unless ( $same_result == 1 );
|
||||
|
||||
# Delete all files from current year from archive folders
|
||||
# Also delete files from last year in current year folder
|
||||
|
|
@ -42,19 +46,24 @@ sub compare_dirs {
|
|||
my ( $dir1, $dir2 ) = @_;
|
||||
my $same = 1;
|
||||
print("Making sure the copy was complete and all files match\n");
|
||||
File::DirCompare->compare($dir1, $dir2, sub {
|
||||
my ($a, $b) = @_;
|
||||
if (! $b) {
|
||||
File::DirCompare->compare(
|
||||
$dir1, $dir2,
|
||||
sub {
|
||||
my ( $a, $b ) = @_;
|
||||
if ( !$b ) {
|
||||
printf "Only in %s: %s\n", dirname($a), basename($a);
|
||||
$same = 0;
|
||||
} elsif (! $a) {
|
||||
}
|
||||
elsif ( !$a ) {
|
||||
printf "Only in %s: %s\n", dirname($b), basename($b);
|
||||
$same = 0;
|
||||
} else {
|
||||
}
|
||||
else {
|
||||
print "Files $a and $b differ\n";
|
||||
$same = 0;
|
||||
}
|
||||
});
|
||||
}
|
||||
);
|
||||
print("Diff of directories done\n");
|
||||
return $same;
|
||||
}
|
||||
|
|
@ -64,12 +73,10 @@ sub delete_dirs {
|
|||
print("Deleting files from current year $curr_year in archives\n");
|
||||
print("and files from last year $last_year from current folder\n");
|
||||
|
||||
my @this_year_files = File::Find::Rule->file()
|
||||
->name("*$curr_year*")
|
||||
->in($old_dir);
|
||||
my @last_year_files = File::Find::Rule->file()
|
||||
->name("*$last_year*")
|
||||
->in($new_dir);
|
||||
my @this_year_files =
|
||||
File::Find::Rule->file()->name("*$curr_year*")->in($old_dir);
|
||||
my @last_year_files =
|
||||
File::Find::Rule->file()->name("*$last_year*")->in($new_dir);
|
||||
|
||||
unlink @this_year_files;
|
||||
print("Deleted all $curr_year files from the folder for $last_year\n");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue