How to remove the extension (including the dot) such that I get
file01
file02
instead of
file01.pdf
file02.pdf
whenever I invoke the following batch.
echo off
for %%x in (*.pdf) do echo %%x
pause
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I found this link for you for some good ideas: Batch: Remove file extension.
But based on that, you can just do this:
All best,
ember