如何将 ftp 服务器上的一个文件夹中的所有文件移动到同一 ftp 服务器上的另一个文件夹

发布于 2024-11-25 05:29:47 字数 68 浏览 2 评论 0原文

如何将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暮年 2024-12-02 05:29:47

您可以使用原始 ftp 命令 rnfr 和 rnto。
rnfr 选择要重命名的文件。收到确认后,您可以使用 rnto 将其存储在不同的文件名下。
这也适用于目录。为此,您必须位于父目录并创建要移动到的目录,例如:

将 /rootFolder/1 移动到 /rootFolder/2 :

CWD /rootFolder
MKD 2
RNFR 1
RNTO 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 :

CWD /rootFolder
MKD 2
RNFR 1
RNTO 2
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文