删除一组随机字符
Removing group of random characters
好的,我有这些文件
文件 1 (37362717)
文件 2 (29190171)
文件 3 (35515714)
脚本如何删除名称的 (*) 部分?
如果您可以使用 powershell,请在包含所有需要重命名的文件的目录中使用此命令:
Get-ChildItem File* | Rename-Item -NewName { $_.name -replace " \(\d+\)", "" }
此命令重命名当前目录中所有名称以 "File" 开头的文件,以便删除 "space and then parentheses with numbers inside" (\(\d+\)
) 部分。
查看此 link 中的示例 4 以了解此命令的工作原理。
好的,我有这些文件
文件 1 (37362717) 文件 2 (29190171) 文件 3 (35515714)
脚本如何删除名称的 (*) 部分?
如果您可以使用 powershell,请在包含所有需要重命名的文件的目录中使用此命令:
Get-ChildItem File* | Rename-Item -NewName { $_.name -replace " \(\d+\)", "" }
此命令重命名当前目录中所有名称以 "File" 开头的文件,以便删除 "space and then parentheses with numbers inside" (\(\d+\)
) 部分。
查看此 link 中的示例 4 以了解此命令的工作原理。