如何将文件从远程 Windows 复制到本地 Ubuntu?
How to copy file from remote Windows to local Ubuntu?
我需要通过 Python 脚本自动复制文件。
在远程 Windows 我有 WinRM 连接。
所以,我可以像这样打开会话
https://github.com/diyan/pywinrm
我需要从路径 C:.txt
复制到路径 /home/test/1.txt
。
我该怎么做(没有 Ansible)?
这可能正是您要找的,SCP over Python 脚本:How to copy a file to a remote server in Python using SCP or SSH?
SCP 可以从 Windows 复制 -> Linux 反之亦然
我需要通过 Python 脚本自动复制文件。
在远程 Windows 我有 WinRM 连接。
所以,我可以像这样打开会话 https://github.com/diyan/pywinrm
我需要从路径 C:.txt
复制到路径 /home/test/1.txt
。
我该怎么做(没有 Ansible)?
这可能正是您要找的,SCP over Python 脚本:How to copy a file to a remote server in Python using SCP or SSH?
SCP 可以从 Windows 复制 -> Linux 反之亦然