태그 보관물: upload

upload

명령 줄에서 내 컴퓨터에서 다른 컴퓨터로 파일을 복사하려면 어떻게해야합니까? cp \\target_machine local_file.txt c:\dest_file.txt

같은 것

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


답변

적절한 권한이 있다고 가정하면 다음과 같이 할 수 있습니다.

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

“c $”를 사용하여 원격 시스템에서 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


답변