码迷,mamicode.com
首页 > 系统相关 > 详细

Powershell 批量重命名

时间:2018-01-25 11:02:13      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:href   命令   分享图片   http   ++   col   shell 批量   alt   测试   

先创建几个用于测试的文件
$Directory = "C:\Test"
For($i=0;$i -le 10; ++$i) {
Set-Content -Path $("$Directory\Test($i).txt") -value $i 
}

创建结果如下图:
技术分享图片

使用下面的命令把Test换成Mail

PS D:\> $Directory = "C:\Test"
PS D:\> Get-ChildItem $Directory | Rename-Item -NewName { $_.name -Replace "Test","Mail" }

结果如下图:
技术分享图片

学习链接:

http://www.computerperformance.co.uk/powershell/powershell_replace.htm
http://www.pstips.net/bulk-renaming-files.html

Powershell 批量重命名

标签:href   命令   分享图片   http   ++   col   shell 批量   alt   测试   

原文地址:http://blog.51cto.com/zhaodongwei/2064933

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!