Update copy-photos-sorted.ps1

This commit is contained in:
Markus Fleschutz 2022-03-28 13:06:32 +02:00 committed by GitHub
parent 4b1b9748f5
commit cae2904f3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,17 +2,17 @@
.SYNOPSIS .SYNOPSIS
Copy photos sorted by year and month Copy photos sorted by year and month
.DESCRIPTION .DESCRIPTION
This PowerShell script copies photos from SourceDir to TargetDir sorted by year and month. This PowerShell script copies image files from SourceDir to TargetDir sorted by year and month.
.PARAMETER SourceDir .PARAMETER SourceDir
Specifies the path to the source directory where the photos reside Specifies the path to the source folder
.PARAMTER TargetDir .PARAMTER TargetDir
Specifies the path to the target folder Specifies the path to the target folder
.EXAMPLE .EXAMPLE
PS> ./copy-photos-sorted D:\Mobile\DCIM C:\MyPhotoAlbum PS> ./copy-photos-sorted D:\SmartPhone\DCIM C:\MyPhotoAlbum
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES
Author: Markus Fleschutz / License: CC0 Author: Markus Fleschutz | License: CC0
#> #>
param([string]$SourceDir = "", [string]$TargetDir = "") param([string]$SourceDir = "", [string]$TargetDir = "")