我正在使用ftplib使用以下代码在 ftp 服务器上上传文件
FtpConnection ftp = new FtpConnection(serverip, ftpuser, ftppassword);
ftp.Open();
ftp.Login();
ftp.SetCurrentDirectory("domain/wwwroot");
void CreateDirOnFtp(string sDir, FtpConnection ftp)
{
try
{
foreach (string f in Directory.GetFiles(sDir))
{
Uri uri = new Uri(f);
ftp.PutFile(f, System.IO.Path.GetFileName(uri.LocalPath));
}
foreach (string d in Directory.GetDirectories(sDir))
{
string dirname = new DirectoryInfo(d).Name;
if (!ftp.DirectoryExists(dirname))
{
ftp.CreateDirectory(dirname);
}
ftp.SetCurrentDirectory(dirname);
CreateDirOnFtp(d, ftp);
}
}
catch (System.Exception e)
{
}
}
但是这段代码并没有遍历所有目录,因此丢失了 ftp 服务器上的一些目录和文件。
所以我决定在 ftp 上上传 zip 文件并在 ftp 服务器上提取它,但我找不到任何方法来提取存在于 ftp 服务器上的文件。
我怎样才能做到这一点?或任何其他更好的方式在 ftp 服务器上上传多个目录和文件