1
0
mirror of https://github.com/fleschutz/PowerShell.git synced 2025-04-04 06:20:42 +02:00

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
Copy photos sorted by year and month
.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
Specifies the path to the source directory where the photos reside
Specifies the path to the source folder
.PARAMTER TargetDir
Specifies the path to the target folder
.EXAMPLE
PS> ./copy-photos-sorted D:\Mobile\DCIM C:\MyPhotoAlbum
PS> ./copy-photos-sorted D:\SmartPhone\DCIM C:\MyPhotoAlbum
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
Author: Markus Fleschutz | License: CC0
#>
param([string]$SourceDir = "", [string]$TargetDir = "")