mirror of
https://github.com/Rushilwiz/knights-path.git
synced 2025-04-03 20:10:16 -04:00
10 lines
157 B
Batchfile
10 lines
157 B
Batchfile
@echo off
|
|
Set filename=%0
|
|
For %%A in ("%filename%") do (
|
|
Set Folder=%%~dpA
|
|
Set Name=%%~nxA
|
|
)
|
|
echo.Folder is: %Folder%
|
|
echo.Name is: %Name%
|
|
pause
|
|
exit |