This commit is contained in:
Tracey Clark 2018-05-20 15:28:09 -05:00
commit c14c180bfe

View file

@ -20,19 +20,23 @@ print("Last year: $lastyear\n");
# Define and create folders # Define and create folders
my $financial_folder = '/home/tracey/Documents/financial/current_year/'; my $financial_folder = '/home/tracey/Documents/financial/current_year/';
my $financial_archive_folder = '/home/tracey/Documents/financial/1_financial_archives/'; my $financial_archive_folder =
my $lastyear_folder = $financial_archive_folder . $lastyear . 'FinancialArchives'; '/home/tracey/Documents/financial/1_financial_archives/';
my @folders = ( $financial_folder, $financial_archive_folder, $lastyear_folder ); 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("Copying current directories to archive folder\n");
print("From: $financial_folder\n"); print("From: $financial_folder\n");
print("To: $lastyear_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 # Make sure contents match before we do any Deleting
# croak on errors to guard against data losss # croak on errors to guard against data losss
my $same_result = compare_dirs( $financial_folder, $lastyear_folder ); 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 # Delete all files from current year from archive folders
# Also delete files from last year in current year folder # Also delete files from last year in current year folder
@ -42,19 +46,24 @@ sub compare_dirs {
my ( $dir1, $dir2 ) = @_; my ( $dir1, $dir2 ) = @_;
my $same = 1; my $same = 1;
print("Making sure the copy was complete and all files match\n"); print("Making sure the copy was complete and all files match\n");
File::DirCompare->compare($dir1, $dir2, sub { File::DirCompare->compare(
my ($a, $b) = @_; $dir1, $dir2,
if (! $b) { sub {
my ( $a, $b ) = @_;
if ( !$b ) {
printf "Only in %s: %s\n", dirname($a), basename($a); printf "Only in %s: %s\n", dirname($a), basename($a);
$same = 0; $same = 0;
} elsif (! $a) { }
elsif ( !$a ) {
printf "Only in %s: %s\n", dirname($b), basename($b); printf "Only in %s: %s\n", dirname($b), basename($b);
$same = 0; $same = 0;
} else { }
else {
print "Files $a and $b differ\n"; print "Files $a and $b differ\n";
$same = 0; $same = 0;
} }
}); }
);
print("Diff of directories done\n"); print("Diff of directories done\n");
return $same; return $same;
} }
@ -64,12 +73,10 @@ sub delete_dirs {
print("Deleting files from current year $curr_year in archives\n"); print("Deleting files from current year $curr_year in archives\n");
print("and files from last year $last_year from current folder\n"); print("and files from last year $last_year from current folder\n");
my @this_year_files = File::Find::Rule->file() my @this_year_files =
->name("*$curr_year*") File::Find::Rule->file()->name("*$curr_year*")->in($old_dir);
->in($old_dir); my @last_year_files =
my @last_year_files = File::Find::Rule->file() File::Find::Rule->file()->name("*$last_year*")->in($new_dir);
->name("*$last_year*")
->in($new_dir);
unlink @this_year_files; unlink @this_year_files;
print("Deleted all $curr_year files from the folder for $last_year\n"); print("Deleted all $curr_year files from the folder for $last_year\n");