file - Batch extract rars with spaces in names -
I am trying to remove batch in some zipper in some directories. Long story short it is through my loop rar files:
for for% * r (* .rar) (unrar x %% r) The problem is that %% R gets a wrong value if the file name is "filename" then "% r" value gets "file" - this file closes in the first place in the file name.
How do I get the loop to work on this file with the empty space in the names?
Thanks
Try it out:
If you are using in a batch file, remember that you have to double the percentage signals to avoid them.
Comments
Post a Comment