Thread: [REL] FOTRS Ultimate Project
View Single Post
Old 09-18-16, 05:37 PM   #1975
Jeff-Groves
Village Idiot
 
Jeff-Groves's Avatar
 
Join Date: Sep 2014
Posts: 5,362
Downloads: 131
Uploads: 0


Default

A simple new Batch file to copy say just mission files we want to work on.

Again we need a list of the files we want.

Then make a batch file from the code below.

Code:
@echo off
set src_folder=c:\Movethis
set dst_folder=c:\target
for /f "tokens=*" %%i in (File-list.txt) DO (move /S "%src_folder%\%%i" "%dst_folder%")
I named mine Move-files.bat

Again do the C root folder stuff by copying the Campain folder to C and renameing it.

This batch file and file list can remain on your desktop if you wish.
Jeff-Groves is offline   Reply With Quote