FTP copy a file to another place in same FTP

前端 未结 9 2068
闹比i
闹比i 2020-11-28 11:54

I need to upload same file to 2 different place in same FTP. Is there a way to copy the file on the FTP to the other place instead of upload it again? Thanks.

9条回答
  •  再見小時候
    2020-11-28 12:45

    You can rename the file to be copied into the full path of your wanted result.

    For example: If you want to move the file "file.txt" into the folder "NewFolder" you can write it as

    ftp> rename file.txt NewFolder/file.txt
    

    This worked for me.

提交回复
热议问题