-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainWindow.xaml.cs
More file actions
790 lines (646 loc) · 26.8 KB
/
Copy pathMainWindow.xaml.cs
File metadata and controls
790 lines (646 loc) · 26.8 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Forms;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Runtime.InteropServices;
using System.Windows.Interop;
using System.IO;
using System.ComponentModel;
using System.Data;
using System.Windows.Threading;
namespace CompareDirectories
{
/// <summary>
/// Logica di interazione per MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
/* settings for the window */
[DllImport("user32.dll")]
private extern static Int32 SetWindowLong(IntPtr hWnd, Int32 nIndex, Int32 dwNewLong);
[DllImport("user32.dll")]
private extern static Int32 GetWindowLong(IntPtr hWnd, Int32 nIndex);
private const Int32 GWL_STYLE = -16;
private const Int32 WS_MAXIMIZEBOX = 0x10000;
private const Int32 WS_MINIMIZEBOX = 0x20000;
/* end settings */
private BackgroundWorker worker1 = new BackgroundWorker();
private BackgroundWorker worker2 = new BackgroundWorker();
private BackgroundWorker workerRecursive = new BackgroundWorker();
private string GetFilter {
get {
return fileFilterDropDown.SelectedValue.ToString();
}
}
static List<Info> filesList1;
static List<Info> filesList2;
static List<Info> listDiff;
private string SelectedPath1 { get; set; }
private string SelectedPath2 { get; set; }
private string path1 ="";
private string path2 = "";
private bool RecursiveScan1 { get; set; }
private bool RecursiveScan2 { get; set; }
private bool RecursiveScanCheck { get; set; }
private string FilterChosen
{
get;
set;
}
private int FilesFound1
{
get;
set;
}
private int FilesFound2
{
get;
set;
}
private int SubDirectoriesFound1
{
get;
set;
}
private int SubDirectoriesFound2
{
get;
set;
}
public MainWindow()
{
InitializeComponent();
comboBoxFilters();
FilterChosen = "*.*";
filesList1 = new List<Info>();
filesList2 = new List<Info>();
worker1.DoWork += new DoWorkEventHandler(worker1_DoWork);
worker1.RunWorkerCompleted += new RunWorkerCompletedEventHandler(worker1_RunWorkerCompleted);
worker2.DoWork += new DoWorkEventHandler(worker2_DoWork);
worker2.RunWorkerCompleted += new RunWorkerCompletedEventHandler(worker2_RunWorkerCompleted);
workerRecursive.DoWork += new DoWorkEventHandler(workerRecursive_DoWork);
workerRecursive.RunWorkerCompleted += new RunWorkerCompletedEventHandler(workerRecursive_RunWorkerCompleted);
}
void workerRecursive_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
{
this.Dispatcher.Invoke(DispatcherPriority.Normal, new Action(delegate()
{
updateDatagrids();
firstDataGrid.Items.Refresh();
secondDataGrid.Items.Refresh();
System.Threading.Thread.Sleep(100);
}));
}
void workerRecursive_DoWork(object sender, DoWorkEventArgs e)
{
worker1.RunWorkerAsync(path1);
worker2.RunWorkerAsync(path2);
System.Threading.Thread.Sleep(250);
}
void worker2_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
{
this.Dispatcher.Invoke(DispatcherPriority.Render, new Action(delegate()
{
updateSecondDatagrid();
updateFileDirCounters2();
}));
System.Threading.Thread.Sleep(100);
}
void worker2_DoWork(object sender, DoWorkEventArgs e)
{
scanForFiles2(path2);
}
void worker1_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
{
this.Dispatcher.Invoke(DispatcherPriority.Render, new Action(delegate()
{
updateFirstDatagrid();
updateFileDirCounters1();
}));
System.Threading.Thread.Sleep(100);
}
void worker1_DoWork(object sender, DoWorkEventArgs e)
{
scanForFiles1(path1);
}
private void browseButton1_Click(object sender, RoutedEventArgs e)
{
var dialog = new FolderBrowserDialog();
DialogResult result = dialog.ShowDialog();
if (result == System.Windows.Forms.DialogResult.OK)
{
if (path1.Length == 0 || !path1.Equals(dialog.SelectedPath))
{
path1 = dialog.SelectedPath;
//initializingWorker1();
worker1.RunWorkerAsync(path1);
SelectedPath1 = dialog.SelectedPath;
//System.Threading.Thread.Sleep(250);
//scanForFiles1(dialog.SelectedPath);
/*try
{
bool busy = worker1.IsBusy;
while (busy)
{
busy = worker1.IsBusy;
//System.Threading.Thread.Sleep(500);
}
//path1 = dialog.SelectedPath;
}
catch (Exception ex)
{
Console.WriteLine(ex.Message.ToString());
Console.WriteLine(ex.InnerException.ToString());
}*/
}
}
}
private void browseButton2_Click(object sender, RoutedEventArgs e)
{
var dialog = new FolderBrowserDialog();
DialogResult result = dialog.ShowDialog();
if (result == System.Windows.Forms.DialogResult.OK)
{
if (path2.Length == 0 || !path2.Equals(dialog.SelectedPath))
{
path2 = dialog.SelectedPath;
//scanForFiles2(dialog.SelectedPath);
worker2.RunWorkerAsync(path2);
SelectedPath2 = dialog.SelectedPath;
/*try
{
bool busy = worker2.IsBusy;
while (busy)
{
busy = worker2.IsBusy;
System.Threading.Thread.Sleep(500);
}
folder2TextBox.Text = dialog.SelectedPath;
}
catch (Exception ex)
{
Console.WriteLine(ex.Message.ToString());
Console.WriteLine(ex.InnerException.ToString());
}*/
}
}
}
/* method to scan the first directory */
private void scanForFiles1(string path) {
FilesFound1 = 0;
SubDirectoriesFound1 = 0;
filesList1.Clear();
int filesFound = 0;
int subDirectoriesFound = 0;
var dirInfo = new System.IO.DirectoryInfo(path);
if (RecursiveScanCheck)
{
int fileRecFound = 0;
int subDirRecFound = 0;
foreach (var file in dirInfo.GetFiles(FilterChosen, System.IO.SearchOption.TopDirectoryOnly))
{
if (file != null)
{
filesList1.Add(new Info()
{
SubFolder = false,
Name = file.Name,
Path = file.FullName,
CreatedDate = file.CreationTimeUtc,
ModifiedDate = file.LastWriteTimeUtc
});
filesFound++;
}
}
recursiveSearch1(path, out fileRecFound, out subDirRecFound);
filesFound = filesFound + fileRecFound;
subDirectoriesFound = subDirectoriesFound + subDirRecFound;
}
else
{
foreach (var file in dirInfo.GetFiles(FilterChosen, System.IO.SearchOption.TopDirectoryOnly))
{
filesList1.Add(new Info()
{
SubFolder = false,
Name = file.Name,
Path = file.FullName,
CreatedDate = file.CreationTimeUtc,
ModifiedDate = file.LastWriteTimeUtc
});
filesFound++;
}
}
FilesFound1 = filesFound;
SubDirectoriesFound1 = subDirectoriesFound;
}
private void updateFileDirCounters1()
{
filesFound1TextBox.Text = FilesFound1.ToString();
subdirectories1FoundTextBox.Text = SubDirectoriesFound1.ToString();
folder1TextBox.Text = SelectedPath1;
}
/* method to scan the second directory */
private void scanForFiles2(string path)
{
FilesFound2 = 0;
SubDirectoriesFound2 = 0;
filesList2.Clear();
int filesFound = 0;
int subDirectoriesFound = 0;
var dirInfo = new System.IO.DirectoryInfo(path);
if (RecursiveScanCheck)
{
int fileRecFound = 0;
int subDirRecFound = 0;
foreach (var file in dirInfo.GetFiles(FilterChosen, System.IO.SearchOption.TopDirectoryOnly))
{
filesList2.Add(new Info()
{
SubFolder = false,
Name = file.Name,
Path = file.FullName,
CreatedDate = file.CreationTimeUtc,
ModifiedDate = file.LastWriteTimeUtc
});
filesFound++;
}
recursiveSearch2(path, out fileRecFound, out subDirRecFound);
filesFound = filesFound + fileRecFound;
subDirectoriesFound = subDirectoriesFound + subDirRecFound;
}
else
{
foreach (var file in dirInfo.GetFiles(FilterChosen, System.IO.SearchOption.TopDirectoryOnly))
{
filesList2.Add(new Info()
{
SubFolder = false,
Name = file.Name,
Path = file.FullName,
CreatedDate = file.CreationTimeUtc,
ModifiedDate = file.LastWriteTimeUtc
});
filesFound++;
}
}
FilesFound2 = filesFound;
SubDirectoriesFound2 = subDirectoriesFound;
}
private void updateFileDirCounters2()
{
filesFound2TextBox.Text = FilesFound2.ToString();
subdirectoriesFound2TextBox.Text = SubDirectoriesFound2.ToString();
folder2TextBox.Text = SelectedPath2;
}
/* method to set the filters available in the filter dropdown */
private void comboBoxFilters() {
/* fileFilterDropDown.Items.Add("*.*");
fileFilterDropDown.Items.Add("*.config");
fileFilterDropDown.Items.Add("*.dll");
fileFilterDropDown.Items.Add("*.exe");*/
List<Filter> filtersList = new List<Filter>();
string[] array = new string[] { "*.*", "*.pdf", "*.txt", "*.config", "*.dll", "*.zip","*.rar","*.exe" };
foreach(string filter in array){
filtersList.Add(new Filter()
{
Name = filter
});
}
fileFilterDropDown.DataContext = filtersList;
}
public class Filter {
public string Name
{
get;
set;
}
}
private void fileFilterDropDown_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
Filter itemSelected = (Filter) fileFilterDropDown.SelectedItem;
FilterChosen = itemSelected.Name;
if (folder1TextBox.Text.Length != 0)
{
worker1.RunWorkerAsync(folder1TextBox.Text);
firstDataGrid.Items.Refresh();
}
if (folder2TextBox.Text.Length != 0)
{
worker2.RunWorkerAsync(folder1TextBox.Text);
secondDataGrid.Items.Refresh();
}
}
private void Window_Loaded(object sender, RoutedEventArgs e)
{
IntPtr hWnd = new WindowInteropHelper(this).Handle;
Int32 windowLong = GetWindowLong(hWnd, GWL_STYLE);
windowLong = windowLong & ~WS_MAXIMIZEBOX;
SetWindowLong(hWnd, GWL_STYLE, windowLong);
}
private void recursiveSearch1(string path, out int filesFound, out int subDirFound)
{
filesFound = 0;
subDirFound = 0;
var dirInfo = new DirectoryInfo(path);
foreach(var dir in dirInfo.GetDirectories())
{
if (dir.FullName == path)
continue;
else
{
foreach (var file in dir.GetFiles(FilterChosen, SearchOption.TopDirectoryOnly))
{
filesList1.Add(new Info()
{
SubFolder = true,
Name = "."+@"\"+dir.Name + @"\" + file.Name,
Path = file.FullName,
CreatedDate = file.CreationTimeUtc,
ModifiedDate = file.LastWriteTimeUtc
});
filesFound++;
}
subDirFound++;
foreach (var subDir in dir.GetDirectories())
{
foreach (var file in subDir.GetFiles(FilterChosen, SearchOption.TopDirectoryOnly))
{
filesList1.Add(new Info()
{
SubFolder = true,
Name = "."+file.FullName.Replace(path, ""),
Path = file.FullName,
CreatedDate = file.CreationTimeUtc,
ModifiedDate = file.LastWriteTimeUtc
});
filesFound++;
}
subDirFound++;
}
}
}
}
private void recursiveSearch2(string path, out int filesFound, out int subDirFound)
{
filesFound = 0;
subDirFound = 0;
var dirInfo = new DirectoryInfo(path);
foreach (var dir in dirInfo.GetDirectories())
{
if (dir.FullName == path)
continue;
else
{
foreach (var file in dir.GetFiles(FilterChosen, SearchOption.TopDirectoryOnly))
{
filesList2.Add(new Info()
{
SubFolder = true,
Name = "." + @"\" + dir.Name + @"\" + file.Name,
Path = file.FullName,
CreatedDate = file.CreationTimeUtc,
ModifiedDate = file.LastWriteTimeUtc
});
filesFound++;
}
subDirFound++;
foreach (var subDir in dir.GetDirectories())
{
foreach (var file in subDir.GetFiles(FilterChosen, SearchOption.TopDirectoryOnly))
{
filesList2.Add(new Info()
{
SubFolder = true,
Name = "." + file.FullName.Replace(path, ""),
Path = file.FullName,
CreatedDate = file.CreationTimeUtc,
ModifiedDate = file.LastWriteTimeUtc
});
filesFound++;
}
subDirFound++;
}
}
}
}
private void firstDataGrid_ScrollChanged(object sender, ScrollChangedEventArgs e)
{
if (e.HorizontalChange != 0.0f)
{
ScrollViewer sv = null;
Type t = firstDataGrid.GetType();
try
{
sv = t.InvokeMember("InternalScrollHost", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.GetProperty, null, secondDataGrid, null) as ScrollViewer;
sv.ScrollToHorizontalOffset(e.HorizontalOffset);
}
catch (Exception ex)
{
System.Windows.Forms.MessageBox.Show(ex.Message);
}
}
if (e.VerticalChange != 0.0f)
{
ScrollViewer sv = null;
Type t = firstDataGrid.GetType();
try
{
sv = t.InvokeMember("InternalScrollHost", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.GetProperty, null, secondDataGrid, null) as ScrollViewer;
sv.ScrollToVerticalOffset(e.VerticalOffset);
}
catch (Exception ex)
{
System.Windows.Forms.MessageBox.Show(ex.Message);
}
}
firstDataGrid.Items.Refresh();
}
private void checkIfFoldersAreEqual()
{
if (FilesFound1 == FilesFound2 && SubDirectoriesFound1 == SubDirectoriesFound2)
{
bool checkLists = listDiff.Count == 0;
//bool checkLists = filesList1.SequenceEqual(filesList2);
if (checkLists)
{
resultOfComparingTextBlock.Text = "Equal Folders!";
resultOfComparingTextBlock.Foreground = new SolidColorBrush(Colors.DarkGreen);
resultOfComparingTextBlock.Visibility = System.Windows.Visibility.Visible;
}
else
{
resultOfComparingTextBlock.Text = "Different Folders!";
resultOfComparingTextBlock.Foreground = new SolidColorBrush(Colors.DarkRed);
resultOfComparingTextBlock.Visibility = System.Windows.Visibility.Visible;
}
}
else
{
resultOfComparingTextBlock.Text = "Different Folders!";
resultOfComparingTextBlock.Foreground = new SolidColorBrush(Colors.DarkRed);
resultOfComparingTextBlock.Visibility = System.Windows.Visibility.Visible;
}
}
private void secondDataGrid_ScrollChanged(object sender, ScrollChangedEventArgs e)
{
if (e.HorizontalChange != 0.0f)
{
ScrollViewer sv = null;
Type t = secondDataGrid.GetType();
try
{
sv = t.InvokeMember("InternalScrollHost", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.GetProperty, null, firstDataGrid, null) as ScrollViewer;
sv.ScrollToHorizontalOffset(e.HorizontalOffset);
}
catch (Exception ex)
{
System.Windows.Forms.MessageBox.Show(ex.Message);
}
}
if (e.VerticalChange != 0.0f)
{
ScrollViewer sv = null;
Type t = secondDataGrid.GetType();
try
{
sv = t.InvokeMember("InternalScrollHost", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.GetProperty, null, firstDataGrid, null) as ScrollViewer;
sv.ScrollToVerticalOffset(e.VerticalOffset);
}
catch (Exception ex)
{
System.Windows.Forms.MessageBox.Show(ex.Message);
}
}
secondDataGrid.Items.Refresh();
}
private void folder1TextBox_TextChanged(object sender, TextChangedEventArgs e)
{
if (folder2TextBox.Text.Length != 0)
{
showDiffTwoCollections();
checkIfFoldersAreEqual();
}
}
private void folder2TextBox_TextChanged(object sender, TextChangedEventArgs e)
{
if (folder1TextBox.Text.Length != 0)
{
showDiffTwoCollections();
checkIfFoldersAreEqual();
}
}
private void showDiffTwoCollections()
{
if(listDiff != null)
listDiff.Clear();
listDiff = filesList1.Where(x => !filesList2.Any(x1 => x1.Name == x.Name))
.Union(filesList2.Where(x => !filesList1.Any(x1 => x1.Name == x.Name))).ToList<CompareDirectories.Info>();
}
private void secondDataGrid_LoadingRow(object sender, DataGridRowEventArgs e)
{
if (folder1TextBox.Text.Length != 0)
{
Info rowDataContext = e.Row.DataContext as Info;
if (rowDataContext != null)
{
string rowItemName = rowDataContext.Name;
if (listDiff != null)
{
foreach (var element in listDiff)
{
if (rowItemName.Equals(element.Name))
{
e.Row.Foreground = new SolidColorBrush(Colors.White);
e.Row.Background = new SolidColorBrush(Colors.DarkRed);
}
}
}
}
}
}
private void firstDataGrid_LoadingRow(object sender, DataGridRowEventArgs e)
{
if (folder2TextBox.Text.Length != 0)
{
DataGridRow item = e.Row;
var c = item.DataContext as Info;
if (c != null)
{
string row = c.Name;
if (listDiff != null)
{
foreach (var element in listDiff)
{
if (row == element.Name)
{
e.Row.Foreground = new SolidColorBrush(Colors.White);
e.Row.Background = new SolidColorBrush(Colors.DarkRed);
}
}
}
}
}
}
private void updateDatagrids()
{
showDiffTwoCollections();
firstDataGrid.ItemsSource = filesList1;
firstDataGrid.DataContext = filesList1;
secondDataGrid.ItemsSource = filesList2;
secondDataGrid.DataContext = filesList2;
}
private void updateFirstDatagrid()
{
//showDiffTwoCollections();
firstDataGrid.ItemsSource = filesList1;
firstDataGrid.DataContext = filesList1;
firstDataGrid.Items.Refresh();
}
private void updateSecondDatagrid()
{
//showDiffTwoCollections();
secondDataGrid.ItemsSource = filesList2;
secondDataGrid.DataContext = filesList2;
secondDataGrid.Items.Refresh();
}
private void recursiveScanCheck_Checked(object sender, RoutedEventArgs e)
{
if (recursiveScanCheck.IsChecked == true)
{
RecursiveScanCheck = true;
if (path1.Length != 0 && path2.Length != 0)
{
workerRecursive.RunWorkerAsync();
if (!workerRecursive.IsBusy)
{
checkIfFoldersAreEqual();
}
}
}
}
private void recursiveScanCheck_Unchecked(object sender, RoutedEventArgs e)
{
RecursiveScanCheck = false;
if (path1.Length != 0 && path2.Length != 0)
{
workerRecursive.RunWorkerAsync();
if (!workerRecursive.IsBusy)
{
System.Threading.Thread.Sleep(500);
checkIfFoldersAreEqual();
}
}
}
}
}