WebClient将文件下载到0KB?

时间:2013-04-24 20:13:30

标签: c# webclient

我需要覆盖的文件在我的本地计算机上。我正在检索的文件来自我的FTP服务器。这些文件都是相同的名称,但字节不同,例如,它们已更新。

我在本地计算机上使用文件作为目标文件 - 这意味着我使用他们的名字在FTP服务器上轻松找到它们。

这是我写的代码:

private void getFiles () {

    string startupPath = Application.StartupPath;
    /*
     * This finds the files within the users installation folder
     */
    string[] files = Directory.GetFiles(startupPath + "\\App_Data", "*.*",
    SearchOption.AllDirectories);

    foreach (string s in files)
    {
        /*
         * This gets the file name
         */
        string fileName = Path.GetFileName(s);
        /*
         * This gets the folder and subfolders after the main directory
         */
        string filePath = s.Substring(s.IndexOf("App_Data"));
        downloadFile("user:pass@mysite.tk/updates/App_Data/" + fileName,
        startupPath + "\\" + filePath);
    }
}

private void downloadFile (string urlAddress, string location)
{
    using (WebClient webClient = new WebClient())
    {
        System.Uri URL = new System.Uri("ftp://" + urlAddress);
        webClient.DownloadFileAsync(URL, location);
    }
}

代码完成后,由于某种原因,子文件夹中的文件显示为0KB。这很奇怪,因为我知道我的FTP服务器上的每个文件都大于0KB。

我的问题是:为什么子文件夹中的文件显示为0KB?

如果这篇文章不清楚,请告诉我,我会尽力澄清。

2 个答案:

答案 0 :(得分:1)

在回答评论中的问题时,以下是一种可行的方法,但不清楚getFiles是否应该是一种阻止方法。在我的例子中,我假设它是(在所有下载完成之前,该方法不会退出)。我不确定功能,因为我写这篇文章是我的头脑,但它是一个大致的想法。

private void getFiles () {

    string startupPath = Application.StartupPath;
    /*
     * This finds the files within the users installation folder
     */
    string[] files = Directory.GetFiles(startupPath + "\\App_Data", "*.*",
        SearchOption.AllDirectories);
    using (WebClient client = new WebClient())
    {
        int downloadCount = 0;
        client.DownloadDataCompleted += 
            new DownloadDataCompletedEventHandler((o, e) => 
            {
                    downloadCount--;
            });
        foreach (string s in files)
        {
            /*
             * This gets the file name
             */
            string fileName = Path.GetFileName(s);
            /*
             * This gets the folder and subfolders after the main directory
             */
            string filePath = s.Substring(s.IndexOf("App_Data"));
            downloadFile(client, "user:pass@mysite.tk/updates/App_Data/" + fileName,
            startupPath + "\\" + filePath);
            downloadCount++;
        }
        while (downloadCount > 0) { }
    }
}

private void downloadFile (WebClient client, string urlAddress, string location)
{
    System.Uri URL = new System.Uri("ftp://" + urlAddress);
    client.DownloadFileAsync(URL, location);
}

答案 1 :(得分:1)