Powershell 脚本无法删除某些文件的前 9 个字符

Powershell 脚本无法删除某些文件的前 9 个字符

我有一些文件被意外地添加了日期。

例如 20240325-*. *

我尝试在 powershell 中运行此脚本,但什么也没发生:

Get-ChildItem -include "20*" | rename-item -newname { [string]($_.name).substring(9) }

我不知道为什么。有什么帮助吗?

相关内容