如何使用批次腳本刪除 Windows 7 中多個檔案的檔案名稱的某些部分? 2024-7-16 • windows-7 rename batch-rename 我有一些 jsp 檔案需要重命名。它有 _h5 前綴。所以我需要刪除 _h5 並建立文件。 例如:Account_h5.jsp 到 Account.jsp 答案1 如果你設定了 Powershell,你可以這樣做: Dir | Rename-Item –NewName { $_.name –replace "_h5","" } 相關內容