How to move files using FTP commands

China☆狼群 提交于 2019-12-17 08:30:12

问题


Path of source file is : /public_html/upload/64/SomeMusic.mp3

And I want to move it to this path : /public_html/archive/2011/05/64/SomeMusic.mp3

How can i do this using FTP commands?


回答1:


In FTP client:

rename /public_html/upload/64/SomeMusic.mp3 /public_html/archive/2011/05/64/SomeMusic.mp3

With FTP commands:

RNFR /public_html/upload/64/SomeMusic.mp3
RNTO /public_html/archive/2011/05/64/SomeMusic.mp3

source: http://www.nsftools.com/tips/RawFTP.htm




回答2:


Just in case someone else will search for a solution to move files by ftp and will not find a solution: As I encountered the same problem and even the RNFR and RNTO will not work like in my case: I solved this by doing the following workaround:

mget files*.ext
cd /path/to/desired/folder/
mput files*.ext

This is twice the traffic (get and put) but for smaller files it is at least a solution.



来源:https://stackoverflow.com/questions/9461844/how-to-move-files-using-ftp-commands

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!