Thread Inhalte zweier Ordner effektiv vergleichen (16 answers)
Opened by Dateipfade at 2009-09-25 19:02

topeg
 2009-09-28 18:29
#126308 #126308
User since
2006-07-10
2611 Artikel
BenutzerIn

user image
Das Script gibt dir eine differenzierte Aufstellung von den unterschieden zwischen zwei Ordnern:
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#!/usr/bin/perl

use strict;
use warnings;
use File::Find;


# Erster Pfad (Ordner1)
my $base_path_a='/home/topeg/test1/';
# Zweiter Pfad (Ordner2)
my $base_path_b='/home/topeg/test2/';

# hash für alle Pfad/Dateinamen
my %files;

# Ordner 1 durchsuchen alle gefunden Dateien +=1
find(sub{found(1,$base_path_a)},  $base_path_a);
# Ordner 2 durchsuchen alle gefunden Dateien -=1
find(sub{found(-1,$base_path_b)},  $base_path_b);


# wenn der Wert =-1 dann ist die Datei zwar in Ordner2 aber nicht in Ordner1
print "nur in $base_path_b :\n  ";
print join("\n  ", sort map{$files{$_}{path}}grep{ $files{$_}{exists}<0 }keys(%files));
print "\n","#"x80,"\n";

# wenn der Wert =1 dann ist die Datei zwar in Ordner1 aber nicht in Ordner2
print "nur in $base_path_a :\n  ";
print join("\n  ", sort map{$files{$_}{path}}grep{ $files{$_}{exists}>0}keys(%files));
print "\n","#"x80,"\n";

# wenn der Wert =0 dann ist die Datei in Ordner1 und in Ordner2
print "existiert in $base_path_b und in $base_path_a :\n";
my @files=map{$files{$_}} sort grep{ $files{$_}{exists}==0}keys(%files);
print "  verändert in $base_path_b :\n";
for my $file (@files)
{
  my @stat_a=stat($base_path_a.$file->{path});
  my @stat_b=stat($base_path_b.$file->{path});
  my $modification_time_a=$stat_a[9];
  my $modification_time_b=$stat_b[9];
  if($modification_time_a < $modification_time_b)
  {
    print "    ".$file->{path}."\n";
  }
}

print "  verändert in $base_path_a :\n";
for my $file (@files)
{
  my @stat_a=stat($base_path_a.$file->{path});
  my @stat_b=stat($base_path_b.$file->{path});
  my $modification_time_a=$stat_a[9];
  my $modification_time_b=$stat_b[9];
  if($modification_time_a > $modification_time_b)
  {
    print "    ".$file->{path}."\n";
  }
}

print "  unverändert:\n";
for my $file (@files)
{
  my @stat_a=stat($base_path_a.$file->{path});
  my @stat_b=stat($base_path_b.$file->{path});
  my $modification_time_a=$stat_a[9];
  my $modification_time_b=$stat_b[9];
  if($modification_time_a == $modification_time_b)
  {
    print "    ".$file->{path}."\n";
  }
}

print "#"x80,"\n";

########################################################################
sub found
{
  my $add=shift;
  my $base=shift;

  if(-f $File::Find::name)
  {
    # remove basepath
    (my $file=$File::Find::name)=~s/^$base//;
    if($file)
    {
      $files{$file}{path}=$file;
      $files{$file}{exists}+=$add;
    }
  }
}


Es ist nicht die richtige Frage ob "File::Find" das kann. Perl kann es. Den Rest musst du programmieren.

View full thread Inhalte zweier Ordner effektiv vergleichen