文件夹名称以空白"开头。 "我需要在所有文件夹的开头删除空白

时间:2016-05-18 19:42:28

标签: powershell

我有一台Windows服务器。文件结构有数千个以BLANK"开头的目录。 "和实际空格键空白。我需要删除那个空白。

1 个答案:

答案 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。如果文件夹中的名称没有空格,则会抛出错误。