我有一台Windows服务器。文件结构有数千个以BLANK"开头的目录。 "和实际空格键空白。我需要删除那个空白。
答案 0 :(得分:4)
那么,他们从一个空间开始?
# List directories where the name starts with a space
# Rename them by replacing a space at the start with nothing
gci -Directory -Recurse -Filter " *" | ren -New {$_.Name.TrimStart()} -WhatIf
NB。如果文件夹中的名称没有空格,则会抛出错误。