Batch file Macro getting the Current File and Path of Batch file

Batch file Macro getting the Current File and Path of Batch file.

Batch File Macro for pulling out the complete Path of the directory of the batch file, its path, File Name
This better can be very much felt while writing the postbuild scripts

@echo off
SET MyPath=%~dp0
ECHO Path of the File: %MyPath%
ECHO Name of the File With Path: %0
ECHO Name of File Only: %~nx0
ECHO Argument1:%~2%

Output:
C:>C:SudheerTestingTest.cmd Argu1 Arug2

Path of the File: C:SudheerTesting
Name of the File With Path: C:SudheerTestingTest.cmd
Name of File Only: Test.cmd
Argument1:Arug2

Leave a Reply