로컬로 저장된 파일을 네트워크 드라이브에 백업하기 위해 배치 파일을 작성하려고합니다. 일부 폴더는 성공적으로 복사되지만 다른 폴더는 복사되지 않습니다. 대신 명령이 실행될 때 대상 폴더가 삭제됩니다.
예상대로 작동 (모든 파일을 대상 폴더에 복사) :
XCOPY /Y "C:\APPS\lse_jboss-4.2.3.GA-1.1\server\default\deploy\lse_datasources-esl_sourcesdedonnees" "H:\My Documents\RESTORE\Data sources"
XCOPY /Y "%AllUsersProfile%\Desktop" "H:\My Documents\RESTORE\Desktop - Global"
XCOPY /Y "%UserProfile%\Desktop" "H:\My Documents\RESTORE\Desktop - mwa700"
XCOPY /Y "%UserProfile%\Favorites" "H:\My Documents\RESTORE\Favorites"
XCOPY /Y "%UserProfile%\Application Data\Microsoft\Templates" "H:\My Documents\RESTORE\Office templates"
예상대로 작동하지 않습니다 (0 개의 파일을 복사하고 대상 폴더를 삭제함).
XCOPY /Y "%UserProfile%\java_libraries" "H:\My Documents\RESTORE\java_libraries"
XCOPY /Y "%UserProfile%\workspaces" "H:\My Documents\RESTORE\workspace"
이 동작을 설명 할 수있는 폴더의 내용이나 속성이 있습니까?