如何通过命令行将文件从我的机器复制到另一台机器?

如何通过命令行将文件从我的机器复制到另一台机器?

就像是

cp \\target_machine local_file.txt c:\dest_file.txt

答案1

假设您拥有适当的权限,您可以这样做:

copy local_file.txt \\target_machine\c$\dest_file.txt

使用“c$”引用远程机器上的 C 盘。

答案2

就像这样:

copy c:\local_path\local_file.txt \\target_machine\destination_path\destination_file.txt

如果你已经\\target_machine\destination_path\映射到网络驱动器,Z: 那么命令将变成

copy c:\local_path\local_file.txt Z:\destination_file.txt

相关内容