是否可以通过 ftp 连接复制文件?
我使用以下代码将文件从本地计算机放入远程计算机:
open abc
a
b
lcd C:\Interfaces\KGR-ARV\XML
ascii
prompt
prompt
cd /usr/qkreditnethome/interface/temp
put C:\Interfaces\KGR-ARV\XML\*KGRRequest*QUA.XML
Y
quit
bye
有没有办法使用 ftp 命令将文件从 /usr/qkreditnethome/interface/temp 复制到 /usr/qkreditnethome/interface/temp2 ?
提前致谢!
I use the following code to put a file from my local machine to a remote machine:
open abc
a
b
lcd C:\Interfaces\KGR-ARV\XML
ascii
prompt
prompt
cd /usr/qkreditnethome/interface/temp
put C:\Interfaces\KGR-ARV\XML\*KGRRequest*QUA.XML
Y
quit
bye
Is there a way, using a ftp command, to copy the file from /usr/qkreditnethome/interface/temp to /usr/qkreditnethome/interface/temp2 ?
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
ftp 中没有复制命令。您必须获取该文件并将其放在您想要的位置。
There is no copy command in ftp. You will have to GET the file and PUT it where you want.
根据操作系统的不同,您可以使用一些第三方软件将远程 FTP 作为本地文件系统的一部分安装,然后使用常规系统复制例程。
Depending on the OS you can take some third-party software which mounts the remote FTP as a part of the local filesystem, and then use regular system copy routines.