Python Forum
How to copy folder from server to local and vice versa
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to copy folder from server to local and vice versa
#1

I need to copy file from server and paste it in local machine how to do ?
Reply
#2
OK, what have you tried?
Reply
#3
from distutils.dir_util import copy_tree
copy_tree("source_path ","destination_path")

This code is working perfectly for local folder but when i am trying to copy folder from server to local then it is not working
Reply
#4
Perhaps you could use paramiko to build ssh tunnel and subprocess with rsync to copy the folder.  Or to use subprocess for all tasks. According to this example, it's not quite simple. I've never used paramiko. But this will work on Linux OS. I don't know if there is rsync for Windows.
"As they say in Mexico 'dosvidaniya'. That makes two vidaniyas."
https://freedns.afraid.org
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Why is the copy method name in python list copy and not `__copy__`? YouHoGeon 2 269 Apr-04-2024, 01:18 AM
Last Post: YouHoGeon
  Compare folder A and subfolder B and display files that are in folder A but not in su Melcu54 3 545 Jan-05-2024, 05:16 PM
Last Post: Pedroski55
  Resample from monthly to weekly works, but not vice versa JaneTan 0 582 Dec-14-2022, 12:58 AM
Last Post: JaneTan
  Server Folder Error : WinError5 Access Denied fioranosnake 1 1,120 Jun-21-2022, 11:11 PM
Last Post: Larz60+
  Compare filename with folder name and copy matching files into a particular folder shantanu97 2 4,483 Dec-18-2021, 09:32 PM
Last Post: Larz60+
  How to take the tar backup files form remote server to local server sivareddy 0 1,900 Jul-14-2021, 01:32 PM
Last Post: sivareddy
  Move file from one folder to another folder with timestamp added end of file shantanu97 0 2,475 Mar-22-2021, 10:59 AM
Last Post: shantanu97
  Failing to copy file from a network to a local drive tester_V 4 7,115 Jan-20-2021, 07:40 AM
Last Post: tester_V
  Python Cut/Copy paste file from folder to another folder rdDrp 4 5,054 Aug-19-2020, 12:40 PM
Last Post: rdDrp
  Installing pefile from local folder KipCarter 4 4,690 Jan-14-2020, 02:33 PM
Last Post: buran

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020