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.
相关问题
- Transfering data through FTP to a folder names con
- Check the update date of a file with FTP functions
- How to list directory contents of an FTP connectio
- continue FTP download afther reconnect
- How do I limit socket speed in C? [duplicate]
You can do this from C-Panel.
Done!
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
This worked for me.
I can copy files between remote folders in Linux based systems. In my particular case, I'm using very common file manager PCManFM:
It's a bit slow, so I guess that it could be downloading and uploading back the files, but it's done automatically and very user-friendly.
Yes, the FTP protocol itself can support this in theory. The FTP RFC 959 discusses this in section 5.2 (see the paragraph starting with "When data is to be transferred between two servers, A and B..."). However, I don't know of any client that offers this sort of dual server control operation.
Note that this method could transfer the file from the FTP server to itself using its own network, which won't be as fast as a local file copy but would almost certainly be faster than downloading and then reuploading the file.
I managed to do this by using WebDrive to mount the ftp as a local folder, then "download" the files using filezilla directly to the folder. It was a bit slower than download normally is, but you dont need to have the space on your hdd.
I don't think there's a way to copy files without downloading and re-uploading, at least I found nothing like this in the List of FTP commands and no client I have seen so far supported something like this.