Click here to Skip to main content
15,891,473 members
Articles / Programming Languages / C#

File Manager using C# and Multithreading

Rate me:
Please Sign up or sign in to vote.
2.92/5 (9 votes)
24 Aug 2008CPOL2 min read 61.8K   2.3K   28  
It helps to maintains files in directories with dynamically generated names using company's naming convention, versions and release
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace FileManager
{
    public partial class process : Form
    {
        public process()
        {
            InitializeComponent();
        }

        public void update_progress()
        {
            if (progressBar1.Value >= progressBar1.Maximum)
            {
                progressBar1.Value = progressBar1.Minimum;
            }
            progressBar1.Value += 5;
            this.Refresh();
            return;
        }
    }

}

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) Photon Infotech
India India
I passed my B.Tech. in 2007 from SRMCEM, Lucknow and currently I am working as a software developer in .Net technology.

Comments and Discussions