PowerShell:按regex重命名目录项

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PowerShell:按regex重命名目录项相关的知识,希望对你有一定的参考价值。

Renames all the files in the working directory from given regex pattern, in this case removes a series of digits (e.g. \_0004\_) that Photoshop appends when exporting layers.
  1. Get-ChildItem ./ | Rename-Item -NewName {$_.Name -replace '^(_d+_)',''}

以上是关于PowerShell:按regex重命名目录项的主要内容,如果未能解决你的问题,请参考以下文章

使用 Powershell 递归重命名文件

powershell PowerShell文件,用于根据图像尺寸递归重命名和编辑目录中的图像。

AWK、SED、REGEX 重命名文件

复制文件重命名(如果已存在)PowerShell

powershell 通过从文件名中删除“&”来重命名目录中的文件。

创建现有数据库的副本并使用 Powershell 脚本对其进行重命名