Tagged Questions
2
votes
1answer
1k views
Batch file FOR/f expansion
I have a file (directories.txt) with directory names, each on a single line and I like to expand the line
C:\Documents and Settings\%USERNAME%\My Documents
In my script to the real user name ...
0
votes
1answer
475 views
Expanding arbitrary variable to a drive, path etc. in a DOS batch
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"
...