我UploadFiles
对 FluentFTP 库的方法有疑问。这是我的代码:
var count = _client.UploadFiles(filesPaths, remotePath, true, true);
foreach(var path in filesPaths)
{
AddLog(string.Format("Uploaded File: {0}", path));
}
并在执行后UploadFiles
抛出异常Can't find file。我在使用时发现remotePath = "/uploads"
我有这个问题,但是当我将 remotePath 设置为 时"/"
,该方法上传文件没有问题。我检查了用户权限,他可以做任何事情。
我不知道可能是什么问题。我在 GitHub 上阅读了源代码,并没有发现任何奇怪的地方。
它是 FluentFTP 的错误吗?还是我错过了什么?