knights-path/Testing/Path.bat
2024-02-28 13:43:34 -05:00

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