
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:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
) | |
) |