Saturday, 14 September 2013

Useful Batch Script

Before we start creation of the batch script to move even and odd named files to separate folders, we need to know how to create a batch file

How to create a windows Batch file?
               Create a sample text file and change its extension to BAT or bat. Then windows recognizes it as a Batch file and executes the series of commands placed in the batch file.



Here is the code.


Code Explanation:

REM Program to copy even named files in "all" to "even" directory and od named files to "odd" directory.
REM Author Ramya Makkini
echo OFF
setlocal enabledelayedexpansion
for /f "tokens=1,2,3* delims=(,)" %%f in ('dir /b C:\sample\all') do (
echo %%g
echo %%f%%g%%h
set /a num= %%g %% 2
if !num! == 0 (
copy C:\sample\all\%%f^(%%g^)%%h C:\sample\even\%%f^(%%g^)%%h
)
if !num! == 1 (
copy C:\sample\all\%%f^(%%g^)%%h C:\sample\odd\%%f^(%%g^)%%h
)
)
view raw gistfile1.txt hosted with ❤ by GitHub