Click here to Skip to main content
15,896,269 members
Articles / Programming Languages / C#

Multithreaded File/Folder Finder

Rate me:
Please Sign up or sign in to vote.
4.19/5 (18 votes)
26 May 2010CPOL17 min read 110.7K   5.6K   125  
File Find is fast, especially if you have multiple physical drives; version 2.1.0.17.
namespace FileFind
{
    partial class About
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows Form Designer generated code

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(About));
            this.productInfoLabel = new System.Windows.Forms.Label();
            this.richTextBox1 = new System.Windows.Forms.RichTextBox();
            this.OSVersionLabel = new System.Windows.Forms.Label();
            this.CLRVersionLabel = new System.Windows.Forms.Label();
            this.processorIdLabel = new System.Windows.Forms.Label();
            this.systemRAMLabel = new System.Windows.Forms.Label();
            this.useridLabel = new System.Windows.Forms.Label();
            this.processorInfoLabel = new System.Windows.Forms.Label();
            this.machineName = new System.Windows.Forms.Label();
            this.SuspendLayout();
            // 
            // productInfoLabel
            // 
            this.productInfoLabel.AutoSize = true;
            this.productInfoLabel.Location = new System.Drawing.Point(13, 13);
            this.productInfoLabel.Name = "productInfoLabel";
            this.productInfoLabel.Size = new System.Drawing.Size(63, 13);
            this.productInfoLabel.TabIndex = 0;
            this.productInfoLabel.Text = "product info";
            // 
            // richTextBox1
            // 
            this.richTextBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.richTextBox1.BackColor = System.Drawing.SystemColors.Control;
            this.richTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.richTextBox1.Location = new System.Drawing.Point(13, 40);
            this.richTextBox1.Name = "richTextBox1";
            this.richTextBox1.Size = new System.Drawing.Size(259, 56);
            this.richTextBox1.TabIndex = 1;
            this.richTextBox1.Text = "File Find utility exploits the multithreading capability of modern operating syst" +
                "ems to rapidly locate files or folders on multiple disks.";
            // 
            // OSVersionLabel
            // 
            this.OSVersionLabel.AutoSize = true;
            this.OSVersionLabel.Location = new System.Drawing.Point(13, 145);
            this.OSVersionLabel.Name = "OSVersionLabel";
            this.OSVersionLabel.Size = new System.Drawing.Size(79, 13);
            this.OSVersionLabel.TabIndex = 2;
            this.OSVersionLabel.Text = "OV version info";
            // 
            // CLRVersionLabel
            // 
            this.CLRVersionLabel.AutoSize = true;
            this.CLRVersionLabel.Location = new System.Drawing.Point(13, 168);
            this.CLRVersionLabel.Name = "CLRVersionLabel";
            this.CLRVersionLabel.Size = new System.Drawing.Size(48, 13);
            this.CLRVersionLabel.TabIndex = 3;
            this.CLRVersionLabel.Text = "CLR info";
            // 
            // processorIdLabel
            // 
            this.processorIdLabel.AutoSize = true;
            this.processorIdLabel.Location = new System.Drawing.Point(13, 214);
            this.processorIdLabel.Name = "processorIdLabel";
            this.processorIdLabel.Size = new System.Drawing.Size(64, 13);
            this.processorIdLabel.TabIndex = 4;
            this.processorIdLabel.Text = "processor id";
            // 
            // systemRAMLabel
            // 
            this.systemRAMLabel.AutoSize = true;
            this.systemRAMLabel.Location = new System.Drawing.Point(13, 237);
            this.systemRAMLabel.Name = "systemRAMLabel";
            this.systemRAMLabel.Size = new System.Drawing.Size(66, 13);
            this.systemRAMLabel.TabIndex = 5;
            this.systemRAMLabel.Text = "system RAM";
            // 
            // useridLabel
            // 
            this.useridLabel.AutoSize = true;
            this.useridLabel.Location = new System.Drawing.Point(13, 99);
            this.useridLabel.Name = "useridLabel";
            this.useridLabel.Size = new System.Drawing.Size(35, 13);
            this.useridLabel.TabIndex = 6;
            this.useridLabel.Text = "userid";
            // 
            // processorInfoLabel
            // 
            this.processorInfoLabel.AutoSize = true;
            this.processorInfoLabel.Location = new System.Drawing.Point(13, 191);
            this.processorInfoLabel.Name = "processorInfoLabel";
            this.processorInfoLabel.Size = new System.Drawing.Size(73, 13);
            this.processorInfoLabel.TabIndex = 7;
            this.processorInfoLabel.Text = "processor info";
            // 
            // machineName
            // 
            this.machineName.AutoSize = true;
            this.machineName.Location = new System.Drawing.Point(13, 122);
            this.machineName.Name = "machineName";
            this.machineName.Size = new System.Drawing.Size(77, 13);
            this.machineName.TabIndex = 8;
            this.machineName.Text = "Machine name";
            // 
            // About
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(284, 264);
            this.Controls.Add(this.machineName);
            this.Controls.Add(this.processorInfoLabel);
            this.Controls.Add(this.useridLabel);
            this.Controls.Add(this.systemRAMLabel);
            this.Controls.Add(this.processorIdLabel);
            this.Controls.Add(this.CLRVersionLabel);
            this.Controls.Add(this.OSVersionLabel);
            this.Controls.Add(this.richTextBox1);
            this.Controls.Add(this.productInfoLabel);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "About";
            this.Text = "About";
            this.Load += new System.EventHandler(this.About_Load);
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.Label productInfoLabel;
        private System.Windows.Forms.RichTextBox richTextBox1;
        private System.Windows.Forms.Label OSVersionLabel;
        private System.Windows.Forms.Label CLRVersionLabel;
        private System.Windows.Forms.Label processorIdLabel;
        private System.Windows.Forms.Label systemRAMLabel;
        private System.Windows.Forms.Label useridLabel;
        private System.Windows.Forms.Label processorInfoLabel;
        private System.Windows.Forms.Label machineName;
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) retired
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions