xcopy에서 여러 개의 파일 및 디렉토리를 제외하고 복사하기

less than 1 minute read

tl:dr: xcopy/exclude: 옵션에 제외할 목록을 기술한 txt 파일을 넣으면 여러 파일과 디렉토리를 제외하고 복사할 수 있다.

다음은 xcopy를 사용하여 복사를 할 때, 여러 개의 디렉토리 및 파일을 제외하고 복사하는 방법이다.

exclude 옵션을 넣을 때, 파일명이나 디렉토리 명이 아닌 txt 파일을 넣는데,

rem xcopy command
xcopy src경로 destination경로 /exclude:.\exclude-list.txt

txt 파일에는 디렉토리 혹은 파일을 기술한다.

# .\copy-exclude-list.txt
\.git\ # 디렉토리 제외
.css # CSS 파일 제외
test* # test로 시작되는 파일명 제외
# 등등

끝!

Tags:

Categories:

Updated:

Leave a comment