新聞中心
這里有您想知道的互聯(lián)網(wǎng)營(yíng)銷(xiāo)解決方案
(PowerShell)重命名文件-創(chuàng)新互聯(lián)
Get-ChildItem -Path C: emp est -Filter *.txt |
Rename-Item -NewName {$_.Basename.Replace("Old","New") + $_.extension} -WhatIf -Verbose
如上 將指定目錄下的所有的文件名從 old 改成 new.. 
adding -WhatIf at the end of the command we are saying to PowerShell: 'Just test, don't actually make any permanent changes'.
-Recurse 查子文件夾。
重命名示例
需求:將D盤(pán)For PS文件夾下的A.txt文件重命名爲(wèi)aa.txt
- rename-Item 'D:For PSA.txt' -NewName 'aa.txt'
批量改文件擴(kuò)展名
需求:將D盤(pán)For PS文件夾下的所有的txt文件改爲(wèi)html文件,即.txt改爲(wèi).html
- get-childItem 'D:For PS' *.txt | rename-item -newname { $_.name -replace '.txt','.html' }
備註:由於replace的模式匹配字符串參數(shù)支持正則表達(dá)式,'.txt'要轉(zhuǎn)義成'.txt'。
批量爲(wèi)文件加前綴
需求:將D盤(pán)For PS文件夾下的所有的txt文件加上一個(gè)“Test_”的前綴
- cd 'D:For PS'
- get-childItem -r *.txt | rename-Item -newname{'Test_'+$_.name}
如果覺(jué)得上面的命令太精簡(jiǎn),看不太懂,可以用如下語(yǔ)句,更好理解些:
- $dir = dir D:ForPS *.txt
- foreach($_ in $dir)
- {
- rename-Item $_.FullName -NewName ('Test_'+$_.Name)
- }
將D盤(pán)For PS文件夾下的所有的txt文件重命名為 Note1.txt、Note2.txt這樣的形式
- get-childItem 'D:For PS' -r *.txt | foreach-Object -Begin {$count = 1} -Process{
- rename-Item $_.fullname -NewName "Note$count.txt";$count++}
網(wǎng)頁(yè)題目:(PowerShell)重命名文件-創(chuàng)新互聯(lián)
本文URL:http://www.dlmjj.cn/article/doesge.html