C#网站文本文件中的匹配编号

时间:2013-12-30 20:40:13

标签: c# matching

您好我的本地文件到远程或网站文件的匹配号码有问题。这是我想要匹配的文件

LocalFile.Txt //包含 101 匹配网站文件 patch.Txt

1 File1.rar 2 File2.rar 。 。 。 101 file101.rar 102 file102.rar 103 file103.rar

我想要发生的是将我的LocalFile.txt中的Number与我网站上的patch.txt相匹配,并下载匹配数字下方的数字...

我有从远程

读取文本文件的简单代码
            WebClient web = new WebClient();
        System.IO.Stream stream = web.OpenRead("http: // mysite .com /update_regular/patchlist.txt");
        using (System.IO.StreamReader reader = new System.IO.StreamReader(stream))
        {
            String text = reader.ReadToEnd();
            MessageBox.Show(text); // Just to show the result for now
        }

从我的网站下载文件

         WebClient webClient = new WebClient();
        webClient.DownloadFileCompleted += new AsyncCompletedEventHandler(Completed);
        webClient.DownloadProgressChanged += new DownloadProgressChangedEventHandler(ProgressChanged);
        webClient.DownloadFileAsync(new Uri("http: // mysite . com/update_regular/754500106.rar"), @"H:\test\754500106.rar");
    }
    private void ProgressChanged(object sender, DownloadProgressChangedEventArgs e)
    {
        progressBar1.Value = e.ProgressPercentage;
    }

    private void Completed(object sender, AsyncCompletedEventArgs e)
    {
        MessageBox.Show("Download completed!");
    }

如何完成任务以完全匹配和下载..请提前感谢您的帮助..

0 个答案:

没有答案