[Solved] Changing white-space on the beginning of a file name [closed]
If the number of leading spaces is constant, then there is actually a simple one liner using nothing but REN that will remove the leading space(s)! If you have exactly one leading space, then you can use ren ” *” “/*” If two leading spaces, then ren ” *” “//*” and so on… This behavior … Read more