I am using a dos batch which processes file using passed parameter:
process.bat "D:\PROJECT\TEST FILES\test.pdf" 72
process.bat:
gswin32c -r%2 -sDEVICE=jpeg -sOutputFile="%~n1-%%d.jpg" -- "%~1"
We can see that the parameter is expanded to the file name in the batch: %~n1.
However I was asked to rewrite the batch to read parameters from a text file:
params.txt
1 D:\PROJECT\TEST FILES\test.pdf
2 72
So I have modified the process.bat:
for /f "tokens=1,*" %%A in ('type ..\params.txt') do set P%%A=%%B
gswin32c -r%P1% -sDEVICE=jpeg -sOutputFile="%~nP2%-%%d.jpg" -- "%~1"
But %~nP2% doesn't work.
I have found that for /f "tokens=*" %%A in (%P1%) do %%~dA could help me but it looks cumbersome.
So is there any other way to expand arbitrary variable to a name, drive, path etc.?
cscript /nologo myname.js) but you can get around that. I do it by using the extensionjxfor my command scripts. To set this up, right-click such a file and tell Windows to open it withc:\windows\system32\cscript.exe. Then use regedit to change the "open" command for that type by going to HKCR\jx_auto_file\shell\open\command and changing the default key's value to"c:\WINDOWS\system32\cscript.exe" /e:JavaScript /nologo "%1". Happy coding. :-) – T.J. Crowder Feb 11 '10 at 10:32