使用c#重命名FTP文件夹名称(或将FTP文件夹移动到同一目录,但名称不同)

本文关键字:文件夹 FTP 移动 重命名 或将 使用 | 更新日期: 2023-09-27 17:50:04

我正在使用名为SecureFtpCnnection的第三方dll,但没有任何方法来重命名文件夹或将一个文件夹复制到另一个文件夹,你能帮我解决这个问题吗?

dll引用在这里https://enterprisedt.com/products/edtftpnetpro/doc/manual/api/html/Methods_T_EnterpriseDT_Net_Ftp_SecureFTPConnection.htm

谢谢

使用c#重命名FTP文件夹名称(或将FTP文件夹移动到同一目录,但名称不同)

SecureFTPConnection的基类,ExFTPConnection似乎有一个方法"RenameFile",注释为"重命名文件或目录"。我无法确定这是相对路径还是绝对路径,但我猜它是相对的。将dir改为父目录和

conn.RenameFile("oldDir", "newDir");
https://enterprisedt.com/products/edtftpnetpro/doc/manual/api/html/M_EnterpriseDT_Net_Ftp_ExFTPConnection_RenameFile.htm