WebClient FTP上载会创建bin和hqx文件

时间:2015-06-19 13:28:17

标签: c# ftp

我正在尝试将String上传到FTP服务器。它可以工作,但它还会创建binhqx文件。问题是:使用WebClient时如何省略这些文件。

代码是:

using (WebClient client = new WebClient())
{
    client.Credentials = new NetworkCredential(Setting.FtpUsername, Setting.FtpPassword);
    client.UploadString(filename, json);
}

0 个答案:

没有答案