如何将 ftp 服务器上的一个文件夹中的所有文件移动到同一 ftp 服务器上的另一个文件夹
如何将 ftp 服务器上的一个文件夹中的所有文件移动到同一 ftp 服务器上的另一个文件夹。
提前致谢..
How to move all files in a folder at a ftp server to another folder in the same ftp server.
Thanks in Advance..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用原始 ftp 命令 rnfr 和 rnto。
rnfr 选择要重命名的文件。收到确认后,您可以使用 rnto 将其存储在不同的文件名下。
这也适用于目录。为此,您必须位于父目录并创建要移动到的目录,例如:
将 /rootFolder/1 移动到 /rootFolder/2 :
You can use the raw ftp commands rnfr and rnto.
rnfr chooses the file to rename from. After receiving a confirmation you can use rnto to store it under a different filename.
this works also with directories. You will have to be at a parent directory in order to that that and create to directory to move to as well, for example:
to move /rootFolder/1 to /rootFolder/2 :