Board logo

标题: [原创代码] PowerShell获取jpg图片的exif信息并重命名 [打印本页]

作者: DAIC    时间: 2013-10-29 16:49     标题: PowerShell获取jpg图片的exif信息并重命名

获取jpg图片的exif信息,根据拍摄日期对图片进行重命名。

1、查看模块路径
PS D:\Test> $Env:PsModulePath
D:\users\DAIC\My Documents\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules\

2、创建文件夹
md "D:\users\DAIC\My Documents\WindowsPowerShell\Modules\Image"

3、下载 Image 模块并解压缩到 D:\users\DAIC\My Documents\WindowsPowerShell\Modules\Image\
http://archive.msdn.microsoft.com/PSImage

4、执行代码

  1. Import-Module Image
  2. Get-ChildItem *.jpg | %{
  3.     $picTaken = (Get-EXIF $_).DateTaken
  4.     if ($picTaken) {
  5.         $newName = (Get-Date $picTaken -uformat "%Y-%m-%d_%H-%M-%S") + ".jpg"
  6.         $oldName = $_.BaseName + ".jpg"
  7.         if ($oldName -ne $newName) {
  8.             Rename-Item $oldName $newName
  9.         }
  10.     }
  11. }
复制代码





欢迎光临 批处理之家 (http://bbs.bathome.net/) Powered by Discuz! 7.2