Skip to content

Instantly share code, notes, and snippets.

@Shtille
Last active July 29, 2016 14:21
Show Gist options
  • Save Shtille/de8631830d4abdf61f77ea42aa37e78f to your computer and use it in GitHub Desktop.
Save Shtille/de8631830d4abdf61f77ea42aa37e78f to your computer and use it in GitHub Desktop.
@echo off
set src_folder=c:\source
set dst_folder=c:\destination
for /F "tokens=*" %%F in (list.txt) DO (
xcopy "%src_folder%\%%~nxF*" "%dst_folder%\" /S /Y
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment