TCC LE 14.00.9 x64 Windows 10 [Version 6.3.18363]
Create a simple batch file a.bat under e:\temp:
for %%f in ("%~1") do (
echo "%%~ff"
)
Run the patch file a.bat test
cmd output:
"E:\temp\test"
TCC LE output:
"testf"
%~ff doesn't seem to be documented. but looks like it expands to full path.
Create a simple batch file a.bat under e:\temp:
for %%f in ("%~1") do (
echo "%%~ff"
)
Run the patch file a.bat test
cmd output:
"E:\temp\test"
TCC LE output:
"testf"
%~ff doesn't seem to be documented. but looks like it expands to full path.