尝试将文件从远程桌面复制到本地。 这是尝试过的代码...
import os
import os.path
import shutil
import sys
import win32wnet
def netcopy(host, source, dest_dir, username=None, password=None, move=False):
""" Copies files or directories to a remote computer. """
wnet_connect(host, username, password)
dest_dir = covert_unc(host, dest_dir)
# Pad a backslash to the destination directory if not provided.
if not dest_dir[len(dest_dir) - 1] == '\\':
dest_dir = ''.join([dest_dir, '\\'])
# Create the destination dir if its not there.
if not os.path.exists(dest_dir):
os.makedirs(dest_dir)
else:
# Create a directory anyway if file exists so as to raise an error.
if not os.path.isdir(dest_dir):
os.makedirs(dest_dir)
if move:
shutil.move(source, dest_dir)
else:
shutil.copy(source, dest_dir)
试图弄清楚如何建立连接并将文件复制到本地。 python新手在这里...
答案 0 :(得分:0)
您是否正在使用RDP客户端? 这是Windows linux还是mac? 您正在使用哪个应用程序? 这是您编写的代码吗? 您知道什么是虚拟频道吗? NLA开启了吗? 您提供的信息很少。 你甚至可以连接吗?您可以ping服务器吗?