Копирование с Progress Bar не работает - PullRequest
0 голосов
/ 10 декабря 2011

У меня вроде есть проблема. Я пытаюсь сделать форму, которая копирует вещи из точки А в Б с помощью строки состояния. Теперь копирование работает нормально, но строка состояния просто ничего не делает .. У кого-нибудь есть подсказка?

public partial class Form4A : Form
{
    public Form4A()
    {
        InitializeComponent();
        OtherSettings();
        BackgroundWorker.RunWorkerAsync(); // Starts wow copying
    }

    private void BackgroundWorker_DoWork(object sender, DoWorkEventArgs e)
    {
        string SourcePath = RegistryRead.ReadOriginalPath();
        string DestinationPath = RegistryRead.ReadNewPath();

        if (!Directory.Exists(SourcePath))
        {
            for (int i = 1; i <= 100; i++)
            {
                //Now Create all of the directories
                foreach (string dirPath in Directory.GetDirectories(SourcePath, "*",
                    SearchOption.AllDirectories))
                    Directory.CreateDirectory(dirPath.Replace(SourcePath, DestinationPath));

                //Copy all the files
                foreach (string newPath in Directory.GetFiles(SourcePath, "*.*",
                    SearchOption.AllDirectories))
                    File.Copy(newPath, newPath.Replace(SourcePath, DestinationPath));


                BackgroundWorker.ReportProgress(i);
            }
        }
    }
    private void backgroundWorker_ProgressChanged(object sender, ProgressChangedEventArgs e)
    {
        // Change the value of the ProgressBar to the BackgroundWorker progress.
        progressBar1.Value = e.ProgressPercentage;
        // Set the text.
        this.Text = e.ProgressPercentage.ToString();
    }

}

1 Ответ

0 голосов
/ 10 декабря 2011

Вы говорите: if (!Directory.Exists(DestinationPath)).Это означает, что цикл никогда не будет выполнен, если путь назначения существует.Убедитесь, что вы удалили DestinationPath перед проверкой кода!

РЕДАКТИРОВАТЬ:

if (Directory.Exists(SourcePath)) {
    //Now Create all of the directories 
    string[] allDirectories = Directory.GetDirectories(SourcePath, "*", SearchOption.AllDirectories);
    string[] allFiles = Directory.GetFiles(SourcePath, "*.*", SearchOption.AllDirectories);
    int numberOfItems = allDirectories.Length + allFiles.Length;
    int progress = 0;

    foreach (string dirPath in allDirectories) {
        Directory.CreateDirectory(dirPath.Replace(SourcePath, DestinationPath));
        progress++;
        BackgroundWorker.ReportProgress(100 * progress / numberOfItems);
    }

    //Copy all the files 
    foreach (string newPath in allFiles) {
        File.Copy(newPath, newPath.Replace(SourcePath, DestinationPath));
        progress++;
        BackgroundWorker.ReportProgress(100 * progress / numberOfItems);
    }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...