I am trying to batch extract some rar's that are in some zip in some directories. Long story short this is my loop through the rar files:
for %%r in (*.rar) do (
unrar x %%r
)
Problem is that %%r gets the wrong value. If the files name is "file name.rar" then %%r gets the value "file" - it stops at the first space in the file name.
How do I get this loop to work file files with spaces in names?
Thank you