Thread: [REL] FOTRS Ultimate Project
View Single Post
Old 09-18-16, 06:46 PM   #1978
Rockin Robbins
Navy Seal
 
Join Date: Mar 2007
Location: DeLand, FL
Posts: 8,899
Downloads: 135
Uploads: 52


Default

Quote:
Originally Posted by Jeff-Groves View Post
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.
Imagine what would have been possible if, instead of atrophying like the command line (DOS) did in Windows, it was allowed to grow and flourish like it has in Linux. The terminal command line is the holy temple of Linux, where all things are possible. In Windows, it's the shrunken and hated remains of when DOS was king.
Rockin Robbins is offline   Reply With Quote