First attempt at finding duplicate files. For now, and possible ever, this process will be a 'best effort' approach, so there will be false positives but this will most likely remain the case for the life of this program.

This commit is contained in:
Admin
2020-12-14 22:48:32 -06:00
parent 06b586d635
commit 95766b044f
5 changed files with 137 additions and 13 deletions
+52
View File
@@ -53,6 +53,10 @@
this.SelectedFolderViewGroupTreeView = new System.Windows.Forms.TreeView();
this.ComparisionFolderViewGroupBox = new System.Windows.Forms.GroupBox();
this.ComparisionFolderViewTreeView = new System.Windows.Forms.TreeView();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.textBox1 = new System.Windows.Forms.TextBox();
this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.MainLayoutPanel.SuspendLayout();
this.MainMenuStrip.SuspendLayout();
this.DiffResultsGroupBox.SuspendLayout();
@@ -61,6 +65,7 @@
this.statusStrip1.SuspendLayout();
this.SelectedGroupFolderViewGroupBox.SuspendLayout();
this.ComparisionFolderViewGroupBox.SuspendLayout();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// MainLayoutPanel
@@ -78,6 +83,7 @@
this.MainLayoutPanel.Controls.Add(this.statusStrip1, 0, 4);
this.MainLayoutPanel.Controls.Add(this.SelectedGroupFolderViewGroupBox, 2, 2);
this.MainLayoutPanel.Controls.Add(this.ComparisionFolderViewGroupBox, 2, 3);
this.MainLayoutPanel.Controls.Add(this.groupBox1, 2, 1);
this.MainLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.MainLayoutPanel.Location = new System.Drawing.Point(0, 0);
this.MainLayoutPanel.Name = "MainLayoutPanel";
@@ -326,6 +332,46 @@
this.ComparisionFolderViewTreeView.Size = new System.Drawing.Size(420, 326);
this.ComparisionFolderViewTreeView.TabIndex = 0;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.button2);
this.groupBox1.Controls.Add(this.button1);
this.groupBox1.Controls.Add(this.textBox1);
this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
this.groupBox1.Location = new System.Drawing.Point(877, 43);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(426, 172);
this.groupBox1.TabIndex = 12;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "groupBox1";
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(29, 34);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(239, 26);
this.textBox1.TabIndex = 0;
//
// button1
//
this.button1.Location = new System.Drawing.Point(296, 38);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 1;
this.button1.Text = "button1";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// button2
//
this.button2.Location = new System.Drawing.Point(16, 120);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(112, 46);
this.button2.TabIndex = 2;
this.button2.Text = "button2";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// FileManager
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
@@ -346,6 +392,8 @@
this.statusStrip1.PerformLayout();
this.SelectedGroupFolderViewGroupBox.ResumeLayout(false);
this.ComparisionFolderViewGroupBox.ResumeLayout(false);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
}
@@ -377,5 +425,9 @@
private System.Windows.Forms.TreeView SelectedFolderViewGroupTreeView;
private System.Windows.Forms.GroupBox ComparisionFolderViewGroupBox;
private System.Windows.Forms.TreeView ComparisionFolderViewTreeView;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.Button button2;
}
}