我有一个包含许多文件的文件夹,我需要添加.txt
扩展名。
例如:
Filename:
Current Filename - A1234.FILE.B12345.C12345
Desired Filename - A1234.FILE.B12345.C12345.txt
我尝试使用 cmd 提示符:ren *.**.txt
,它只是从文件名中删除了“C12345”。
答案1
-WhatIf
如果 Powershell 是一个选项,这对您有用吗?确认其行为符合预期后,删除。
Get-ChildItem | ForEach-Object { Rename-Item $_ -NewName ($_.Name + ".txt") -WhatIf -Verbose }
或者更简洁地说:
dir | %{ Rename-Item $_ -NewName ($_.Name + ".txt") -WhatIf -Verbose }