我正在尝试使用robocopy将本地文件复制到服务器上。这是我的剧本:
if exist \\10.1.1.1\c$ net use \\10.1.1.1\c$ /delete
net use Z: \\10.1.1.1\c$ p@ssword /user:domain\username
:: first copy files to a temp directory
xcopy C:\dev\Filepath C:\dev\TempFiles\ /E /C /H /R /K /O /Y
:: then copy files from temp directory to server
robocopy "C:\dev\TempFiles" "Z:\Program Files (x86)\Insite Software\Commerce Integration Service V3.7.1.16264" MSD*.dll
net use \\10.1.1.1\c$ /delete
我意识到它无法正常工作,因为我正在服务器上替换的文件目前正在服务器上使用。如何替换当前正在使用的文件?