使用 WebClient 复制到 FTP 后出现文件使用错误

File in use error after copying with WebClient to FTP

我从本地 ftp 下载文件,代码如下:

System.Net.WebClient oClientFTP = new System.Net.WebClient();
oClientFTP.Credentials = new System.Net.NetworkCredential("user", "password");
oClientFTP.DownloadFile("ftp://192.168.0.10/files/test.pdf","test.pdf");
oClientFTP.Dispose();

文件已正确复制但未发布,我尝试执行的任何操作都告诉我该文件正在被另一个应用程序使用。我尝试使用 ProcessExplorer 但它没有解决问题。 我也尝试将文件复制到另一个文件,但问题是一样的。 复制后如何释放文件?

我使用流解决了它,然后将其写入文件。

using (MemoryStream stream = new MemoryStream(oClientFTP.DownloadData(cFtp +cNomefile)))
{
  using (FileStream outputFileStream = new FileStream(cNomefile, FileMode.Create))
  {
    stream.CopyTo(outputFileStream); 
  }
}