Windows下如何使用PowerShell批量重命名文件 Leave a reply Get-ChildItem *.txt| Rename-Item -NewName { $_.Name -replace '\.txt','.log' } [......] 继续阅读