2016年7月22日 星期五

用powershell重新命名

有時候相機拍的照片都會有DSCxxxx001之類的前置字,可以利用window內建的powershell把它換成有意義的字串
使用方式如下:
在目標資料夾的位址列中輸入powershell,在目標資料夾下開啟powershell(或powershell ise開啟powershell的 ise
打開後輸入
Dir | Rename-Item -NewName { $_.name –replace "DSCxxxx", "AGoodDay_" }這行code的意思是:將Dir所得到的內容傳送給Rename重新命名,將字串DSCxxxx取代為AGoodDay_

沒有留言:

張貼留言