就像是
cp \\target_machine local_file.txt c:\dest_file.txt
就像是
cp \\target_machine local_file.txt c:\dest_file.txt
Answers:
假设您具有适当的权限,则可以这样进行:
copy local_file.txt \\target_machine\c$\dest_file.txt
使用“ c $”引用远程计算机上的C驱动器。
net use
在复制之前为共享提供身份验证(例如:stackoverflow.com/questions/3854026)。但是不确定是否可以使用上面的c $表示法,您必须尝试一下才能看到。
就像这样:
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
The network name cannot be found
那么它是一个网络问题,或者您没有权限或防火墙阻止了你的请求
system cannot find path specified error
。双反斜杠用于通过UNC命名方案访问网络共享。是的,这在我的网络上有效,我有几个脚本可以在其中使用(脚本用于导出数据,压缩数据并将其移动到NAS)。我怀疑权限问题。您要复制的计算机是否在不同的域/工作组上?
c$
必须使用共享。