我正在开发一个更新程序,它下载一个 updatelist.xml 文件,其中包含有关 FTP 服务器上文件的信息(哈希码、文件名和文件目录)。
然后它会在本地计算机上获取这些文件的信息,如果它们不同(基于哈希码),更新程序会继续从 ftp 服务器下载更新的文件。
这很好用,但是在涉及 txt 文件时我遇到了一个小问题。基本上,当我写文件时,它不会写空终止的字符串,例如:
这是FTP服务器上的文件:
"Come Lads! How does things go?
I see my youth in you and it makes
这是下载到本地计算机后的同一个文件:
"Come Lads! How does things go?I see my youth in you and it makes
我一直在互联网上搜索信息,但我不明白如何解决这个问题。
这是一段代码,我认为这是重要的部分。
FileStream file;
file = File.Open(downloadFilePath, FileMode.Create);
byte[] buffer = new byte[1024 * 30];
int read;
long downloaded = 0;
while ((read = responseStream.Read(buffer, 0, buffer.Length)) > 0)
{
downloaded += read;
string text = string.Format("Descargando archivo {0} de {1}: {2} - {3} / {4}", curFiles, totalFiles,
xn["Name"].InnerText, BytesToString(downloaded), BytesToString(contentLength));
label_progreso.Text = text;
progressBar2.Value = (int)ProgressBarValue(downloaded, contentLength);
file.Write(buffer, 0, read);
}
显然问题在于,当程序创建和写入文件时,它不会写入以空字符结尾的字符串。
我错过了什么?
我找到了使用 webclient.download 而不是 FtpWebRequest 的信息,我已经尝试过了,但它也不起作用。