在我的工作代码中,我有这个
import paramiko
parent=os.path.split(dir_local)[1]
for walker in os.walk(parent):
try:
self.sftp.mkdir(os.path.join(dir_remote,walker))
except:
pass
for file in walker[2]:
sftp.put(os.path.join(walker[0],file),os.path.join(dir_remote,walker[0],file))
现在显示的错误是
Trying ssh-agent key 5e08bb83615bcc303ca84abe561ef0a6 ... success
Caught exception: <type 'exceptions.IOError'>: [Errno 2] Directory does not exist.
打印walker
显示该文件夹中的所有文件,但我不知道该文件夹为什么不复制到sftp服务器
答案 0 :(得分:5)
除非您覆盖os.walk()
,否则会产生三个对象的元组:dirpath, dirnames, filenames
因此,您os.path.join(dir_remote, walker)
调用将始终抛出异常,导致您的预期目录无法创建。
我发现像这样写os.walk()
循环更清楚了:
for dirpath, dirnames, filenames in os.walk(parent):
remote_path = os.path.join(dir_remote, dirpath)
# make remote directory ...
for filename in filenames:
local_path = os.path.join(dirpath, filename)
remote_fliepath = os.paht.join(remote_path, filename)
# put file
请注意,os.walk()
将行走您指定parent
中的所有目录。