From e796bae7cbd0c4d4e689af75af8614afd5729b3a Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Mon, 30 Dec 2024 11:17:29 +0100 Subject: [PATCH] Updated copy-photos-sorted.ps1 --- scripts/copy-photos-sorted.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/copy-photos-sorted.ps1 b/scripts/copy-photos-sorted.ps1 index 6d3f616b..e578b8d2 100755 --- a/scripts/copy-photos-sorted.ps1 +++ b/scripts/copy-photos-sorted.ps1 @@ -10,7 +10,7 @@ .EXAMPLE PS> ./copy-photos-sorted.ps1 D:\iPhone\DCIM C:\MyPhotos ⏳ Copying IMG_20240903_134445.jpg to C:\MyPhotos\2024\09 SEP\... - ✅ Copied 1 photo (0 skipped) to 📂C:\MyPhotos in 41s. + ✅ Copied 1 photo to 📂C:\MyPhotos (0 skipped) in 41s. .LINK https://github.com/fleschutz/PowerShell .NOTES @@ -88,7 +88,7 @@ try { } [int]$elapsed = $stopWatch.Elapsed.TotalSeconds [int]$copied = $files.Count - $skipped - "✅ Copied $copied photos ($skipped skipped) to 📂$targetDir in $($elapsed)s." + "✅ Copied $copied photos to 📂$targetDir ($skipped skipped) in $($elapsed)s." exit 0 # success } catch { "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"