If I am iterating over each file using :
@echo off
FOR %%f IN (*.*) DO (
echo %%f
)
how could I print the extension of each file? I tried assigning %%f to a temporary variable , and then using the code :
echo "%t:~-3%"
but with no success .
|
|
|
|
|
|
|
The FOR command has several built-in switches that allow you to modify file names. Try the following:
For further details, use |
||
|
|
|
Sam's answer is definitely the easiest for what you want. But I wanted to add: Don't
and you are using
Check out
for more info. The other alternative is to call a subroutine to do the |
||
|
|
|
|
This works, although it's not blindingly fast:
|
||
|
|